Re: [jQuery] Taconite question...

2007-03-26 Thread Mike Alsup
On 3/26/07, Daemach <[EMAIL PROTECTED]> wrote: > > Thanks, Daemach. I didn't read it closely enough. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Taconite question...

2007-03-26 Thread Daemach
And I didn't catch the orphaned paren, so we're even ;) On 3/26/07, Mike Alsup <[EMAIL PROTECTED]> wrote: On 3/26/07, Daemach <[EMAIL PROTECTED]> wrote: > > Thanks, Daemach. I didn't read it closely enough. ___ jQuery mailing list discuss@jquery

Re: [jQuery] Taconite question...

2007-03-26 Thread Mike Alsup
> > > Error Message > > > > > That should work shouldn't it? If you fix the typo with the parens that is a valid taconite doc. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Taconite question...

2007-03-26 Thread Daemach
On 3/26/07, Christopher Jordan <[EMAIL PROTECTED]> wrote: Mike, I'm working on this problem with Rick, and I've never used taconite before. The idea is that we've got three hidden form fields on the calling page which are associated with each text field being verified. All fields are being v

Re: [jQuery] Taconite question...

2007-03-26 Thread Daemach
The one gotcha I've run into is with the disabled attribute - setting disabled="false" doesn't do anything. You have to remove the attribute entirely using (wait for it...) removeAttr() to re-enable a disabled form field. On 3/26/07, Mike Alsup <[EMAIL PROTECTED]> wrote: Rick, Anything you ca

Re: [jQuery] Taconite question...

2007-03-26 Thread Rick Faircloth
Thanks, Mike... Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Monday, March 26, 2007 3:54 PM To: jQuery Discussion Subject: Re: [jQuery] Taconite question... > Do those http://malsup.com/jquery/taconite/#commands M

Re: [jQuery] Taconite question...

2007-03-26 Thread Christopher Jordan
Mike, I'm working on this problem with Rick, and I've never used taconite before. The idea is that we've got three hidden form fields on the calling page which are associated with each text field being verified. All fields are being verified onblur by the processing page called via ajax. Since

Re: [jQuery] Taconite question...

2007-03-26 Thread Mike Alsup
> Do those http://malsup.com/jquery/taconite/#commands Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Taconite question...

2007-03-26 Thread Rick Faircloth
Mike... Do those mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Monday, March 26, 2007 3:10 PM To: jQuery Discussion Subject: Re: [jQuery] Taconite question... Rick, Anything you can do in jQuery you can do with Taconite. Just think to yourself, "How would I do that in jQuery?&

Re: [jQuery] Taconite question...

2007-03-26 Thread Mike Alsup
Rick, Anything you can do in jQuery you can do with Taconite. Just think to yourself, "How would I do that in jQuery?" For example, to check a checkbox you would write: $('#myCheckbox').attr('checked', 'checked'); So in Taconite that becomes: Mike On 3/26/07, Rick Faircloth <[EMAIL PROTEC

Re: [jQuery] Taconite question...

2007-03-26 Thread Rick Faircloth
Thanks, Mike! Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Monday, March 26, 2007 3:10 PM To: jQuery Discussion Subject: Re: [jQuery] Taconite question... Rick, Anything you can do in jQuery you can do with Taconite. Just

[jQuery] Taconite question...

2007-03-26 Thread Rick Faircloth
Hey, Mike... or some else... Can taconite be used to change a form field value, say from false to true, or will it only change element content? Rick ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] taconite question

2007-02-28 Thread Paul
ussion. Subject: Re: [jQuery] taconite question > When I click a navigation link there is a series of cosmetic changes made to > the screen. In addition to these interface changes, which occur quite > nicely using Taconite, I would usually use a .load() function to load > another temp

Re: [jQuery] taconite question

2007-02-28 Thread Mike Alsup
> I always try to combine as many separate operations into a single taconite > operation. I'm a noob, so keep that in mind. That's the best way to do it, Nathaniel. Don't make two requests if you can get what you need with one! ___ jQuery mailing list

Re: [jQuery] taconite question

2007-02-28 Thread Nathaniel See
I use Taconite quite a bit for combining multiple ajax calls into a single one. Is there a reason why you couldn't combine the Load function that takes place after the initial and instead use Taconite to have that take place during the initial call. Load() just replaces the contents of an eleme

Re: [jQuery] taconite question

2007-02-28 Thread Mike Alsup
> When I click a navigation link there is a series of cosmetic changes made to > the screen. In addition to these interface changes, which occur quite > nicely using Taconite, I would usually use a .load() function to load > another template into the main div, and this is what confuses me. Should

[jQuery] taconite question

2007-02-28 Thread Paul
I'm experimenting with the Taconite Plugin (http://www.malsup.com/jquery/taconite) and I could use a nudge in the right direction. When I click a navigation link there is a series of cosmetic changes made to the screen. In addition to these interface changes, which occur quite nicely using Tac