I'm not sure why the subject isn't showing up properly?
On Mar 29, 12:08 am, jmarnold <rncodep...@gmail.com> wrote: > I'm working on integrating the validate plugin with ASP.NET. I have > the basicvalidationworking just fine but I'm running into a few > limitations of the plugin now with regards to ASP.NET's concept of > CausesValdiation and ValidationGroup. I envision having some sort > ofgroupingmechanism of rules by name. I think this goes beyond ASP.NET > integration as it would allow for simplevalidationof sub-forms. > Maybe something like: > > $('#myform').validate({ > rules: { > 'SignUp' : { > firstname: { > required:true, > validationGroup: 'name' > } > } > } > > }); > > I'm not sure of the best way to trigger thevalidationof that rule > set. Maybe there could be some sort of submission method through the > validator that would handle that? (e.g., > ('#myform').submitThroughValidation('SignUp')). > > It would also be great to specify a selector for elements that can > bypassvalidation. Perhaps something like: > > $('#myform').validate({ > skipValidation: '#cancelButton' > > });