Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I add the dataEvents by jQuery over a colModel already defined? The thing is i'm using a library over MVC for jqgrid and the colModel is set by a Class definition, so i couldn't change as you write here. How can i add a dataevent for a column later by JavaScript?

share|improve this question
I would suggest you edit your question and clearly ask rather then referring to some previous question which I have no idea what you are talking about. – Mark Feb 21 at 13:26
3  
Questions should contain only on-topic content, if you have an issue with any action taken in SO you should post it on Meta for discussion. Also, you will most likely need to provide some relevant code to get a proper answer. – Fabrício Matté Feb 21 at 13:27
Oliver, the reason your previous questions were deleted was because you asked them within answers on other people's questions. They were removed because they weren't answers to the questions asked. – Brad Larson Feb 21 at 16:23

closed as not constructive by tereško, Fabrício Matté, Alexander, Virtlink, Vishal Suthar Feb 21 at 17:14

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

You formulate your question not quite correct. Nevertheless if I correctly understand your problem you can do for example the following to modify the column "theColumnName" of colModel after the grid is created:

$("gridId").jqGrid("setColProp", "theColumnName", {
    editoptions: {
        dataEvents: [
            {
                type: "change",
                fn: function () {
                    // some code of the "change" handler
                }
            }
        ]
    }
});

The executing of the code will add "change" event handler. So the next initializing of any edit field (in form editing, cell editing of inline editing) will bind your custom event handle.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.