Hi,
I am trying to get either a RadToolTip working with a GridButtonColumn (because I need to use the RadWindow Confirm)
or
A Template column with a RadTooltip inside which also pops up a RadConfirm window.
I spent a good few hours yesterday and got this working....
<script type="text/javascript"> function OnClientClicking(sender, args) { var callBackFunction = Function.createDelegate(sender, function (argument) { if (argument) { this.click(); } }); var text = "Are you sure you want to archive this application?"; radconfirm(text, callBackFunction, 300, 100, null, "Archive?"); args.set_cancel(true); } </script><telerik:RadButton ID="imgArchive" runat="server" CommandName="Refs" OnClientClicking="OnClientClicking"></telerik:RadButton>The problem is that my usercontrols are loaded into a multipage using RenderSelectedPageOnly="true" and ajax.
When selecting the tab with the control used above I am getting 'OnClientClicking' is undefined.
All help appreciated.
Cheers,
Jon