hi. looked at the sample page here . http://demos.telerik.com/aspnet/prometheus/Window/Examples/BrowserDialogBoxes/DefaultVB.aspx .
don't get it. well... I get it just not in how to use it for my issue.
Simple issue. confirm record deletion from a formview.
the setup.
container.aspx has radwindowmanager and radajaxmanager (controls the radtabstrip and radmultipage). Rad multipage has my ascx grid/form pages
within myform.ascx I have a formview / editItemTemplate.
<asp:Button ID="DeleteButton" runat="server" CausesValidation="False" CommandName="Delete" |
Text="Delete" OnClientClick="radconfirm('Are you certain you want to delete this?');return false; "></asp:Button> |
</EditItemTemplate> |
The issue.
the radconfirm raises the confrm dialoge, however, clicking OK does not result in record deletion. If I remove return false; it deletes the record regardless of the button clicked.
What am i doing wrong ? Do I need to trap the confirmation back in JS? And if so, how do i tell page to proceed with the deletion? Sorry if this is a stupid question.. I just don't understand how to get this to work.