This is a migrated thread and some comments may be shown as answers.

RadInputManager Disable Validation on Client

1 Answer 61 Views
Input
This is a migrated thread and some comments may be shown as answers.
Tarek
Top achievements
Rank 1
Tarek asked on 10 Dec 2013, 12:37 PM
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

Sort by
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.
Tags
Input
Asked by
Tarek
Top achievements
Rank 1
Answers by
Kostadin
Telerik team
Share this question
or