Sasha wrote: > What I'm trying to figure out is if I can "turn off" the validator for > the 2nd button when I add a row to the table, while keeping it active > for the 1st one. To do this you remove the metadata from the form element which you don't want to validate.
e.g. if you have a "required" element, it has the class "required", simply remove the class to stop the validation on the element. And reinstate it when you want it again. Steve