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>

第二个字段:客户名称

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 回答