I have a custom control "toolbar" my page and I have created a confirm dialog for one of the toolbar button. I need to hook-up some server side code from the javascript. Is is possible with telerik toolbar ? Thanks in advance.
To hook-up some server side code from the javascript You need a postback. You can do this by placing an invisible server button on your page and
then in the JavaScript callback function of radconfirm to invoke the
"click" event of the button which will cause a postback. Then, in the
event handler of the button you can perform the server side actions. Try
the following code snippets..