DataGrid編輯時, 是否可以動態改變編輯器的屬性內容?
可以的, 如下使用 onShowEditor事件來處理, 利用editor來存取編輯器的屬性, 下面的例子是動態改變Combobox的欄位與條件:
function dgDetail2_onShowEditor(index, field, editor)
{
   if(field == '聯絡人') {
       editor.options.valueField = '次序';
       editor.options.textField = '姓名';
       editor.options.whereItems = [{ field: '客戶編號', operator: '=', value: "parent['客戶編號']"}];
   }
   return editor;    
}