我建议你使用一些事件来监控 select 控件的变化,并改变editrulesrequired
选项的值。
例如,在演示中,我在“ ship_via ”列的选择控件上使用了“focusout”事件来更改“note”列的编辑规则required
选项。我使用了“focusout”事件,因为代码使用了我在此处建议的错误修复。您可以选择使用其他事件,但您应该在不同的浏览器中进行测试。
我在演示中使用的代码是
{name: 'ship_via', index: 'ship_via', width: 105, align: 'center', editable: true,
formatter: 'select', edittype: 'select', editoptions: {
value: 'FE:FedEx;TN:TNT;IN:Intim',
defaultValue: 'IN',
dataEvents: [
{
type: 'focusout',
fn: function (e) {
$grid.jqGrid('setColProp', 'note', {
editrules: {required: ($(e.target).val() !== "IN")}
});
}
}
]
},
stype: 'select', searchoptions: {
sopt: ['eq', 'ne'],
value: ':Any;FE:FedEx;TN:TNT;IN:IN'
} },
{ name: 'note', index: 'note', width: 60, sortable: false, editable: true,
edittype: 'textarea' }