Hello!
I would like to have it so that if my item ID="rmDelete" onItem Clicked, it pops up a prompt and confirms whether or not to execute the code. I have written code in my code-behind doing this:
Can the Rad Window, or javascript be used to complete this?
Thanks!
I would like to have it so that if my item ID="rmDelete" onItem Clicked, it pops up a prompt and confirms whether or not to execute the code. I have written code in my code-behind doing this:
| Protected Sub RadMenu1_ItemClick(ByVal sender As Object, ByVal e As Telerik.WebControls.RadMenuEventArgs) Handles RadMenu1.ItemClick |
| Dim ItemClicked As Telerik.WebControls.RadMenuItem = e.Item |
| If ItemClicked.Text = "Delete" Then |
| 'Delete if popup result = yes. |
| End If |
| End Sub |
Can the Rad Window, or javascript be used to complete this?
Thanks!