I have a webhierarchicaldatagrid with a template column, inside that template column I have an imagebutton.
When user clicks on that imagebutton I have a confirmation box , so if user clicks OK then I want to do a postback on that image button. Can anyone help me how to achieve that.
Thanks,
Megha
Hello Megha,My suggestion is to use webdialogwindow and if you choose click the button for postback to call __doPostBack from the client. If you want to postback only the grid then put it in update panel and call __doPostBack only with the update panel as an argument.
Hello Megha
Please let me know if you have any further questions regarding this issue.
I'm converting infragistics ultrawebgrid v6.0 to infragistics webdatagrid v11.2
In the older version to trigger a postback from within a client-side event we used
ultrawebgrid.DisplayLayout.ClientSideEvents.CellClickHandler() = "igtbl_needpostback;"
can you please let me know what is the equivalent code for the above line?