This question is locked. New answers and comments are not allowed.
Hello,
I want to control filtering operations in my GridView by showing a RadWindow to confirm filtering action, because it will clear all user workflow data. I'm using the Filtering event of gridView and RadWindow.Confirm("", ConfirmResult). The problem is that RadWindow.Confim dosen't stop the code execution. Can someone tell me how can I do to meet my need please?
This is my code :
I want to control filtering operations in my GridView by showing a RadWindow to confirm filtering action, because it will clear all user workflow data. I'm using the Filtering event of gridView and RadWindow.Confirm("", ConfirmResult). The problem is that RadWindow.Confim dosen't stop the code execution. Can someone tell me how can I do to meet my need please?
This is my code :
private
void
Grid_Filtering(
object
sender, GridViewFilteringEventArgs e)
{
RadWindow.Confirm(
"Message_ConfirmSelectionClear"
, (_sender, _e) =>
{
if
(_e.DialogResult ==
false
) e.Cancel =
true
;
}
}