I have a button named "Delete Element". When I click overthere, it deletes the element ( server-side ).
<
asp:LinkButton ID="rteLnkBtnDeleteFlash" runat="server" Text="Supprimer ce flash"
onclick="rteLnkBtnDeleteFlash_Click"></asp:LinkButton>
I would like to display a radWindow to confirm the delete ( maybe a radconfirm ) to ask if the user want to really delete the element. If he clicks YES, I would like to call my delete method ( rteLnkBtnDeleteFlash_Click ) which is into the server side, but not into the client side.
But how may I to do it with a radconfirm or other rad component ?
<button style="width:150px" onclick = "radconfirm('Are you sure?', confirmCallBackFn); return false;">show CONFIRM BOX</button>
function confirmCallBackFn(arg)
{
alert("I want to delete the element here into the server side if it is true ...);
}
Thank you in advance,