Hi,
I have some problems to stop RadGrid row change because radConfirm don't stop like command confirm to wait response.
I check if my row is dirty and if is the case, i want to radconfirm this row changed to advice user for lost of data not saved.
Script OnRowSelecting and OnRowSelected
with this script, OnRowSelected fired only if response is True from confirm, but with radConfirm OnRowSelected fired before response.
How can implement this with radConfirm?
Thank's
I have some problems to stop RadGrid row change because radConfirm don't stop like command confirm to wait response.
I check if my row is dirty and if is the case, i want to radconfirm this row changed to advice user for lost of data not saved.
Script OnRowSelecting and OnRowSelected
function OnRowSelecting(sender, eventArgs) { return eventArgs.set_cancel(!confirm("Confirm navigation?"));}function OnRowSelected(sender, eventArgs) { // Make action...}with this script, OnRowSelected fired only if response is True from confirm, but with radConfirm OnRowSelected fired before response.
How can implement this with radConfirm?
Thank's