SOS ----- SOS.
I have a RadGrid with FormTemplate having approx 30 controls including ASP.NET validation controls.
I have a ClientSide CustomValidator which needs to access other control on the form using Javascript/JQuery to read its value and also enable or disable some of Other validation controls.
I tried to write following line on a clientside in a CustomValidation Control
ValidatorEnable($(
'RequiredFieldValidator4'), value);
But that does not work and returns error "Microsoft JScript runtime error: 'null' is null or not an object"
I also want to access other controls like textbox, RadmaskedTextbox etc inside CustomValidator control.
Please tell me how to I get a successfull access to these controls.
Regards
JD