datagrid的一个列为combobox,现在要在新增数据的设置他的默认值,如何设置?
或者说如何让他默认选中第一行
{
field: 'NMK06', title: '性别', width: 100, align: 'center',
editor: {
type: 'combobox', options: {
valueField: "value", textField: "text",
data: [{ value: '请选择', text: '请选择'},{ value: '男', text: '男' },{ value: '女', text: '女' }],
onLoadSuccess: function () {
// $(this).combobox('setValue', '0');
// $(this).combobox('setText', '--请选择--');
},
panelHeight: '60'
}
}, sortable: true
},