[jQuery] [treeview]

2009-06-04 Thread Phillip Senn
If you look at http://docs.jquery.com/Plugins/Treeview/treeview the demo is confusing because it shows a folder called New Sublist but the tree that displays in the demo has a folder called Folder 1. It's not until you view the source do you realize that the two have nothing to do with one another

[jQuery] [treeview] documentation

2009-06-04 Thread Phillip Senn
The documentation for the treeview plugin consists of examples, but I wonder if anyone has written some narrative about it?

[jQuery] Typo

2009-06-04 Thread Phillip Senn
The home page of jQuery plugin: Treeview has a typo: Leightweight . http://bassistance.de/jquery-plugins/jquery-plugin-treeview/

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2008-09-24 Thread Phillip
't contains slideShow variable. > > There was another problem with before callback. I think at very first > time, i.e. when page is just loaded, in before callback function > opts.nextSlide has wrong value. (try before and opts.nextSlide instead > of after and opts.currSlid

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2008-09-23 Thread Phillip
Thanks for the reply. I gave it shot, but still no dice. The good news is opts.slideCount is working. But opts.nextSlide doesn't seem to update when you click ahead. Any ideas on what to try next?

[jQuery] Re: New Plugin - Agile Carousel - Looking For FeedBack

2008-09-23 Thread Phillip
Worked well for me (FF3 Mac). Pretty cool... those timer options will be handy. Good stuff.

[jQuery] jQuery Cycle - Get Current Slide Number

2008-09-23 Thread Phillip
Hi everyone, I'm having a tiny issue with jQuery cycle that I'm hoping someone may be able to help out with. I have a page has multiple slide shows in it, and have written a little script to loop over and implement the function. I'd also like to diplay the current slide number under each sideshow

[jQuery] Re: New Plugin - Agile Carousel - Looking For FeedBack

2008-09-23 Thread Phillip
Worked well for me (FF3 Mac). Pretty cool... those timer options will be handy. Good stuff.

[jQuery] [autocomplete] HTTPS IE 6 Security Error

2008-09-22 Thread Phillip
results var $results = $(results); // None of these work individually: //$results.append($('')); //$results.append($('')); //$results.append($('')); //$results.append($('')); Any other ideas? Thank you, Phillip

[jQuery] Speed issues when using jQuery on webapp

2007-09-13 Thread Phillip B Oldham
We've been using jQuery (1.2 since its release) with a webapp we're building, and it's all been plain-sailing, until now. We've got a table which uses livegrid to load in new rows. 2 out of the 4 columns contain elements which have events bound using livequery (so any new rows also get bound). Wh

[jQuery] Does 1.2 now negate the need for liveQuery?

2007-09-11 Thread Phillip B Oldham
Hi all I remember something being mentioned that 1.2 would remove the need for the liveQuery plugin, binding relevant events to elements added in a DOM update. Has this happened, or will I still need to use liveQuery after an update?

[jQuery] Re: Behavior plugin doesn't with with $.ajax methods (.load, etc)

2007-08-07 Thread Phillip B Oldham
Ah, Just checked your example. We're using the following: $('div#target').load('/get/a/html/fragment'); which still applies the dom modification, just seperately to the appendTo. On Aug 7, 10:57 am, Phillip B Oldham <[EMAIL PROTECTED]> wrote: > I'm usi

[jQuery] Re: Behavior plugin doesn't with with $.ajax methods (.load, etc)

2007-08-07 Thread Phillip B Oldham
I'm using both load and $.ajax (via $.post and $.get). It wasn't working at all for me with .load. Will test your new code this week when I'm back on js development. Thanks for your response! On Aug 1, 7:38 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > Hey P

[jQuery] Behavior plugin doesn't with with $.ajax methods (.load, etc)

2007-08-01 Thread Phillip B Oldham
Hi all Just a quick note - the behavior plugin doesn't work with any method which fires the $.ajax method - $.load, $.post, $.get, etc. - when using the latest jQuery (1.3.1.1). Thought I'd mention it as the FAQ is a little miss-leading: $('a').behavior('click',fn); $('#mydiv').load('my.html')

[jQuery] Re: Attach pre-defined events to loaded dom elements?

2007-08-01 Thread Phillip B Oldham
On Jul 27, 7:06 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > The answer to this question is, in fact, on that page;http://docs.jquery.com/ > Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_r > equest.3F That FAQ entry was really useful, however that plugin doesn't work wi

[jQuery] Re: Attach pre-defined events to loaded dom elements?

2007-07-27 Thread Phillip B Oldham
Perfect! Thanks for your help. On Jul 27, 9:22 am, David Duymelinck <[EMAIL PROTECTED]> wrote: > I think this is what you need > :http://www.learningjquery.com/2006/09/sacrificial-lambda > > -- David > > Phillip B Oldham schreef: > > > Hi all > > >

[jQuery] Attach pre-defined events to loaded dom elements?

2007-07-27 Thread Phillip B Oldham
Hi all I have a document with some links with a certain class. When loaded, some events are attached to these links. I'm then using $().load() to grab a HTML fragment and append it to the DOM. Inside this HTML fragment are more links with aforementioned class. Is there a way I can globally attac

[jQuery] Re: Tabs plugin: Is there a way to trigger a tab with a URL to load?

2007-04-20 Thread Phillip B Oldham
599c616 < a.trigger(tabEvent); --- > a.trigger(tabEvent, [tgt]); To use: $('#tabs').triggerTab(2, 'http://mysite.com/mypage.html'); One benefit is that the tab remembers its new target, so when its clicked you get the same page again, rather t

[jQuery] Re: Make a div expand to take up the rest of the viewport?

2007-04-18 Thread Phillip B Oldham
by a margin on another > element or body. > > -- > > On Apr 18, 7:06 pm, Phillip B Oldham <[EMAIL PROTECTED]> wrote: > > > By the looks of things it puts a div over the full size of the > > document, rather than expand a div to the size of the viewport. > > &g

[jQuery] Tabs plugin: Is there a way to trigger a tab with a URL to load?

2007-04-18 Thread Phillip B Oldham
I'd like to be able to trigger a tab using the following format (or something similar): $('#container').triggerTab(3, 'http://mysite.com/updates.html'); The second parameter is a URL I'd like to load, which can change depending on user input. Is this possibl

[jQuery] Re: Make a div expand to take up the rest of the viewport?

2007-04-18 Thread Phillip B Oldham
By the looks of things it puts a div over the full size of the document, rather than expand a div to the size of the viewport. On Apr 18, 9:17 am, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > doesn't the thickbox take up the viewport? look at that > > - Original Message

[jQuery] Make a div expand to take up the rest of the viewport?

2007-04-18 Thread Phillip B Oldham
I've left it like that, but if some one had an idea why it's over-sizing that would be great. -- *Phillip B Oldham* begin:vcard fn:Phillip Oldham n:Oldham;Phillip org:The Activity People;Systems Development email;internet:[EMAIL PROTECTED] title:Chief Programmer tel;work:0870 162

[jQuery] Ext examples, comparing jQuery against YUI

2007-04-04 Thread Phillip B Oldham
libraries are fine. I'm wondering whether this is a known issue and whether its being addressed. I'm developing a webapp for a client that will be using Firefox 2.* across the board, and was hoping to use jQuery & Ext to create some very usable components. Unfortunately, this issue migh