Hi Jack,
You can set the state as invalid in the OnValidating event. This way the service should not be called.
Regards,
Viktor Tachev
Telerik by Progress
You can set the state as invalid in the OnValidating event. This way the service should not be called.
function
onValidating(sender, args) {
if
(args.get_input().get_value() ==
""
) {
args.set_isValid(
false
);
}
}
Regards,
Viktor Tachev
Telerik by Progress
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.