ASP.NET - disabling validators in gridview using javascript

In addition to my question about disabling validators with javascript - Disable ASP.NET validators with JavaScript ...

Does anyone know how to traverse a gridview in javascript to dynamically disable validators on every line. Now I understand that I will need to use ValidatorEnable (validatorControl, false) to disable each validator, but how can I detect the validators first?

Many thanks.

0


source to share


1 answer


You will need to unfold through the gridview and select the individual validators this way.



A great example of accessing a gridview with javascript can be found here

+1


source







All Articles