Hi, in my radwizard, I have multile steps with different groups. I try to find a way to bypass the validation when I press "previous" button. There is no way I can hit previous without my required field validator interrupting me.
I found a thread where you ask to add the following javascript :
function OnClientButtonClicking(sender, args) {
if (sender.get_activeIndex() > args.get_nextActiveStep().get_index()) {
args.set_cancel(true);
sender.set_activeIndex(args.get_nextActiveStep().get_index());
}
}
When I debug, I can see the script is called but there is something else preventing the page from going to the previous one. Required field validator kicks in as soon as I hit previous.
Thank you for your help
I found a thread where you ask to add the following javascript :
function OnClientButtonClicking(sender, args) {
if (sender.get_activeIndex() > args.get_nextActiveStep().get_index()) {
args.set_cancel(true);
sender.set_activeIndex(args.get_nextActiveStep().get_index());
}
}
When I debug, I can see the script is called but there is something else preventing the page from going to the previous one. Required field validator kicks in as soon as I hit previous.
Thank you for your help