我正在研究 jqgrid。我有一列里面有下拉列表。
我在下拉列表中绑定更改事件。但是,它没有被触发。我对在哪里提到 dataEvents 感到困惑。
代码:
beforeProcessing: function (response) {
var $self = $(this);
$self.jqGrid("setColProp", "Country", {
formatter: "select",
edittype: "select",
editoptions: {
value: $.isPlainObject(response.Mapping) ? response.Mapping : []
},
dataEvents: [
{
type: 'change',
fn: function (e) {
alert("I am fired by the key press event of text box inside jqgrid");
}
}
]
});
},
我没有收到任何错误..但没有触发事件。请帮忙 。