1. 程式人生 > >為jqGrid中的select列新增change事件

為jqGrid中的select列新增change事件

formatter: 'select',
editable:true,
edittype: 'select',
editoptions: {
  value: xxxList,
  dataEvents:[
 {
 type:'change',
 fn:function(e){
 var val = this.value;
 // do whatever u want
 }
 }
  ]
}