I have an aspx with a web tool bar and a ultrawebgrid.
In my application i observe that toolbarclick clientside event executes first and then BeforeRowInsert event executes.
I want BeforeRowInsert to be executed first and then ToolBarClick event to fire.
Can anyone help me . how can i achieve this.
Hello,
Unfortunately the flow of events cannot be changed - first a click is executed and then this executes the before row insert command and this fires the respective event. When do you need them in reverse order? Can't you just change (switch) logic of the event handlers?