0

Jquery easyuiコンボボックスの limitid フィールドを変更する際に customer_name を変更したいのですが、

ここに私のデータグリッドフィールドがあります

コンボ ボックスのある最初のフィールド: 'limitid'

th  data-options="field:'limitid', 
width:250,sortable:'true',
formatter:limitidFormatter,

 editor:{                        
type:'combobox',
 options:{

valueField:'limitid',

textField:'name',

data:limitidlist,

required:true

}

}">Limit ID</th>

2 番目のフィールド: 顧客名

th   data-options="field:'customer_name',

sortable:'true',

width:250">

Customer Name'/th>'

onchange 関数をトリガーして顧客名フィールドに入力する方法を知りたい

4

1 に答える 1

0

コンボボックスの onselect 関数を使う ...

これを試して..

editor:{
      type:'combobox',
      options:{
                valueField:'limitid',
                textField:'name',
                data:limitidlist,
                required:true
        },
      onSelect:function(record){
                   console.log(record); //this is called whn user select the combobox
                  //do your stuff here///
            }
   }
于 2012-11-26T06:56:01.557 に答える