getEditor: Get the specified editor, the options contains two properties:
index: the row index. (The index of the row being edited, starting from 0)
field: the field name. (The edited column name, configured by column)
var ed = $('#dg').datagrid('getEditor', {index:1,field:'svrCustNo'});var value=$(ed.target).combobox('getValue')alert(value)
ed The output is an object type and the value is empty. What is it? The reason