[jQuery] Re: Simplemodal causes validators to fire on webform

2009-01-12 Thread tawright915
would this work if I have some fields using the jquery validate plugin (for masked fields) and some using the MS required field validator? Tom On Jan 10, 1:13 am, jQuery Lover ilovejqu...@gmail.com wrote: You probably binding your validators to ALL input[type=submit] or to some class (Ex:

[jQuery] Re: Simplemodal causes validators to fire on webform

2009-01-12 Thread tawright915
I figured it out. The close button on my modal panel was set to causes validation = true. I set that to false and all works fine. Thanks for the help. Your post got me thinking about that. Tom On Jan 10, 1:13 am, jQuery Lover ilovejqu...@gmail.com wrote: You probably binding your validators

[jQuery] Simplemodal causes validators to fire on webform

2009-01-08 Thread tawright915
When I click the close button on my modal message box it causes the required field validators to fire on my form. Is there a way to stop this from happening? Tom

[jQuery] Re: Jquery coding direction

2009-01-07 Thread tawright915
So in my code I have: $(document).ready(function($) { if ($(#TextBox11).val()|| $(#TextBox12.val()) { $(#TextBox11).valid(); $(#TextBox12).valid(); }; $(#form1).validate( {

[jQuery] Re: Jquery coding direction

2009-01-06 Thread tawright915
I did not make my question clear and left out some things so here is goes again. I have two textboxes on my web form. When blank they are both required and are validated upon submit. However if one is filled in then the other is not required any more and the page should allow to validate

[jQuery] Re: Jquery coding direction

2009-01-06 Thread tawright915
yes On Jan 6, 1:44 pm, Daniel dqmin...@gmail.com wrote: Sry , I mean Validation plugin On Jan 7, 3:40 am, Daniel dqmin...@gmail.com wrote: What kind of validation are you using ? Are you using jquery Form plugin ? On Jan 7, 3:03 am,tawright915tawright...@gmail.com wrote: I

[jQuery] Re: Jquery coding direction

2009-01-06 Thread tawright915
jquery.validate.js On Jan 6, 1:44 pm, Daniel dqmin...@gmail.com wrote: Sry , I mean Validation plugin On Jan 7, 3:40 am, Daniel dqmin...@gmail.com wrote: What kind of validation are you using ? Are you using jquery Form plugin ? On Jan 7, 3:03 am,tawright915tawright...@gmail.com

[jQuery] Jquery coding direction

2009-01-02 Thread tawright915
I'm having problems wrapping my head around how to code this: I have two textboxes both are required. However if a user fills out one of the textboxes then the other is no longer required. Any suggestions? Thanks Tom

[jQuery] Modal Panel

2008-11-19 Thread tawright915
I've created a panel that has two labels and a button. I want to display it as a modal and have the button close the modal when clicked. When I use the code below it does not display the panel. Are there any examples on how to do this? Or plugins that will make this easier to do? Thanks Tom