I have a page with several validation controls. However when i attempt to add a row to my grid, the validation control prevents the postback from happening. Is there a way to set the grids update/insert button to causevalidation = false.
In order to avoid this, you can set ValidationGroup to the validator, control to validate and to the button. Submission of a particular group of controls
will not execute the validation controls of another group(Here it will not validate the RadGrid). This helps
you to group your controls and have separate validation controls for each
group.