Hello,
i have a column with an editor that visualize a dropdownlist. I need to catch the event of dropdownlist changing and not the changing of the editor.
I thought that when i modify the dropdown a submission form is raised with the value of the dropdown editor set in the dropdown of the form.
createeditor: function (row, column, editor) { editor.jqxDropDownList({source: source1, width: '150px', height: '30', selectedIndex: 0, theme: "metro"}); editor.attr('id', 'dropdown'); jQuery('#dropdown').on('change', function (event){ jQuery('#newcate1').val(editor.val()); jQuery('#firstsubmit').click(); }); },