Jquery easyui 我想在更改组合框限制字段时更改customer_name,
这是我的datagrid字段
带有组合框的第一个字段:'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功能并填写客户名称字段
答案 0 :(得分: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///
}
}