0

我正在研究 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");
                                    }
                                }
                                ]
                            });
                        },

我没有收到任何错误..但没有触发事件。请帮忙 。

4

1 回答 1

4

我解决了这个问题。问题是 DataEvents 是 Editoptions 的属性。我放错了。。

这可能对某些人有用..谢谢

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 change event of drop down inside jqgrid");
                                    }
                                }
                                ]
                              }
                            });
                        },
于 2013-11-06T17:04:25.413 回答