Hi All,
I used getOptions and setOptions in our project with no issue, except for one. I re-applied the click event back to the command button after using grid.setOption with the following script
var sourceClickEvent = columnClickEvent; //columnClickEvent calls myfunction ()
$.extend(myTarget.dataSource.options.fields[j].command[k], { click: sourceClickEvent });
and I can see the click event for the command button, but every time I click on the button the click event does not fired. Could anyone tell me what I did wrong?
TIA