Can I disable a client validation of RadInputManager in Javascript ? as I can disable a Required Field Validator in JS
1 Answer, 1 is accepted
0
Kostadin
Telerik team
answered on 13 Dec 2013, 07:24 AM
Hi Tarek,
A possible solution is to hook the ClientEvents OnValidating function and disable the validation by setting set_cancel to true. Please check out the following code snippet.
function validating(sender, args)
{
args.set_cancel(true);
}
Regards,
Kostadin
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.