I have a delete button on my toolbar that I need a popup before deleting.
So, I need the delete button on the toolbar to confirm the user really wants to.
I've followed the instructions below:
http://www.telerik.com/help/aspnet/toolbar/tool_stop_postback.html
I get the following error in my Firefox error console: "....attachEvent is not a function"
Here is my radtoolbar:
and here is my javascript:
any suggestions?
So, I need the delete button on the toolbar to confirm the user really wants to.
I've followed the instructions below:
http://www.telerik.com/help/aspnet/toolbar/tool_stop_postback.html
I get the following error in my Firefox error console: "....attachEvent is not a function"
Here is my radtoolbar:
<telerik:RadToolBar ID="UserAccessEditToolBar" runat="server"/> |
<script type="text/javascript"> |
<%= UserAccessEditToolBar.ClientID %>.attachEvent("OnClientClick","click_handler"); |
function click_handler(sender, e) |
{ |
if (sender.CommandName == "clientside") |
{ |
// call clientside function here |
return false; |
} |
} |
</script> |