[jQuery] Re: (validate) Won't validate when input element inside jQuery UI Dialog

2009-06-27 Thread pbindagorge
Yep, verified the form ID and that there are no dupe IDs. Like I wrote, it works as expected if I just move the input field out of the dialog div. Thanks for your reply. As our validation needs for this dialog weren't huge, and our dev pace is too rapid right now, I decided just to manually valid

[jQuery] Re: Trying to customize jCarousel to do AJAX loads with my XML response

2009-06-26 Thread pbindagorge
Why not just convert the XML to JSON when it's returned from the server (there are a variety of plugins that make this very easy), iterate the JSON object to build the HTML/CSS that jCarousel expects, inject it into the DOM and then call jcarousel() on it? On Jun 26, 1:58 pm, expresso wrote: > I

[jQuery] Re: Want to use POST but how set remote.data property after validate() is called?

2009-04-10 Thread pbindagorge
I finally figured out how to do this: I set this.data to my json string inside the function assigned to the $.ajax beforeSend property. I then added a function for the $.ajax dataFilter property to convert the json response to an object (using jQuery JSON at http://code.google.com/p/jquery-json/)

[jQuery] Re: [validate] How can I force element validation if the value is unchanged?

2009-04-01 Thread pbindagorge
That worked! Thank you so much for your quick replies and for all your hard work on this superb plugin! On Apr 1, 12:08 pm, Jörn Zaefferer wrote: > Try this: > > $phoneNumber.data("previousValue", null).valid() > > Jörn > > On Wed, Apr 1, 2009 at 8:04 PM, pbindago

[jQuery] Re: [validate] How can I force element validation if the value is unchanged?

2009-04-01 Thread pbindagorge
I have really tried to figure out how to do this, but I can't figure it out by what you wrote here. Can you please tell me more? Here's where I thought I should be attempting this. The "validator" var points to the return of $('#aspnetForm').validate()... $ddlCountries.change(function() {

[jQuery] Re: Using remote w/ data and ASMX doesn't seem to process the response

2009-03-31 Thread pbindagorge
eturn $.xmlToJSON(dataXML).Text; } On Mar 31, 11:19 am, pbindagorge wrote: > Thank you very much for your response! I've gotten it working with > your help. I added the following and it works just fine: > > dataFilter: function(dataXML) { >      return $(dataXML, 'boolean').te

[jQuery] Re: [validate] Using remote w/ data and ASMX doesn't seem to process the response

2009-03-31 Thread pbindagorge
Thank you very much for your response! I've gotten it working with your help. I added the following and it works just fine: dataFilter: function(dataXML) { return $(dataXML, 'boolean').text(); } On Mar 31, 12:55 am, Jörn Zaefferer wrote: > The plugin expects a JSON true/false response, whi