[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-18 Thread AtlantaGeek
0% of the users of this app will use IE6, > which sucks, but it is what it is. I don't see the error in Firefox, > so it's been hell trying to figure out how to fix the bug. Jörn has > turned me on to Firebug Lite, so I am trying to track it down that > way, as I get time.

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-18 Thread AtlantaGeek
it is what it is. I don't see the error in Firefox, > so it's been hell trying to figure out how to fix the bug. Jörn has > turned me on to Firebug Lite, so I am trying to track it down that > way, as I get time. > > Too many hats :) > > On Jul 11, 10:15 am, AtlantaG

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-18 Thread AtlantaGeek
t; turned me on to Firebug Lite, so I am trying to track it down that > way, as I get time. > > Too many hats :) > > On Jul 11, 10:15 am, AtlantaGeek <[EMAIL PROTECTED]> wrote: > > > > > I still think some of my posts are getting massively delayed > > (actuall

[jQuery] AutoCompleter - Adding second occurrence

2007-07-16 Thread AtlantaGeek
I've gotten the AutoCompleter by Jörn Zaefferer at http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete working for one textbox on my page. I'm now trying to add another. The query works fine and it displays the data in the popup, but I get an error when I select something. I'm trying

[jQuery] Re: NEWS: 5 Minute Book Review: "Learning jQuery"

2007-07-15 Thread AtlantaGeek
at right off the bat, but I realize the beginning examples were pretty simple and perhaps weren't well suited to demonstrate chaining. On Jul 15, 10:01 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Jul 15, 2007, at 9:45 PM, AtlantaGeek wrote: > > > > > Oh, BTW, I did buy

[jQuery] Re: NEWS: 5 Minute Book Review: "Learning jQuery"

2007-07-15 Thread AtlantaGeek
we'll > be looking into this a little further. > > Let me know if you have any further issues. > > Rey.. > > > > > > AtlantaGeek wrote: > > Are you really on the JQuery evangelism team? Is there such a thing? > > If so, perhaps some of your work should

[jQuery] Re: NEWS: 5 Minute Book Review: "Learning jQuery"

2007-07-15 Thread AtlantaGeek
Thanks again. On Jul 15, 9:36 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Hi Russ, > > You should be all set now. You were in fact a moderated user and we'll > be looking into this a little further. > > Let me know if you have any further issues. > > Rey.. >

[jQuery] Re: NEWS: 5 Minute Book Review: "Learning jQuery"

2007-07-15 Thread AtlantaGeek
try very hard to make this > list accomodating to newcomers and in fact, have very strict rules on > how people are treated on this list. > > We'll get it worked out. > > Rey... > > > > > > AtlantaGeek wrote: > > Are you really on the JQuery evang

[jQuery] Re: NEWS: 5 Minute Book Review: "Learning jQuery"

2007-07-15 Thread AtlantaGeek
Are you really on the JQuery evangelism team? Is there such a thing? If so, perhaps some of your work should center around making this group a little more friendly to newcomers. At present, it seems that new members postings are moderated. I have been experiencing 10 hour (and now more than 10

[jQuery] Re: JQuery AutoCompleter error

2007-07-14 Thread AtlantaGeek
to match the names in my code). Perhaps I've cut out something pertinent that did not seem pertinent. On Jul 14, 11:48 am, AtlantaGeek <[EMAIL PROTECTED]> wrote: > Using Jörn Zaefferer' AutoCompleter > athttp://bassistance.de/jquery-plugins/jquery-plugin-autocomplete > > I&

[jQuery] Re: AutoCompleter question

2007-07-14 Thread AtlantaGeek
Dan, Please excuse my ignorance on JQuery. From Jorn's sample web page, it appears that the findValueCallback function is executed when the user makes a selection from the drop down. So I took an earlier suggestion you made and tried to combine it with this suggestion of yours to accomplish wha

[jQuery] JQuery AutoCompleter error

2007-07-14 Thread AtlantaGeek
Using Jörn Zaefferer' AutoCompleter at http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete I'm getting an error in the function below. The error is at line 553, the error is "object required", this file is jquery.autocompleter.js. This is occurring under IE 7 and it happens when I m

[jQuery] Re: AutoCompleter question

2007-07-14 Thread AtlantaGeek
Thanks again, Dan. Where can I see that? In your example (yes) or the original code (not so yes). Remember, I have literally just started with JQuery, so what seems obvious to you is not so obvious to me. On Jul 13, 8:42 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > As you can see, th

[jQuery] AutoCompleter question

2007-07-13 Thread AtlantaGeek
Using the AutoCompleter at http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete, how do I process the data I'm sending back. The data comes back like this: Item | Item Description | Qty On Hand | Price I need to put Item Description, Qty On Hand, and Price in three SPAN elements. T

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-13 Thread AtlantaGeek
Ok, nevermind, hold off. When I got some of the other issues fixed and turned back to this, I did change:

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-13 Thread AtlantaGeek
t set up right now. I'll see what I can do. In the meantime, any suggestions on the CSS thing would be a help. On Jul 12, 4:25 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > AtlantaGeek wrote: > > Fixed that "object expected" error. It seems JQuery (or your > >autocompleter) was sensitive to the SCRIPT tag. Had to make it: > > >

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-13 Thread AtlantaGeek
Would the whole page HTML help? $(document).ready(function() { $("#txtItem").autocomplete("itemquery.acm", { delay: 150, width: 400, formatItem: formatItem, formatResult: formatResult, selectFirst: false }); $("#txtItem").result(function(event, data, formatted) { $(this).find("..+/i

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-12 Thread AtlantaGeek
Not sure why it would suddenly pitch a fit over this. Anyway, now the autocomplete functionality is not working, but I'll have to experiment with that and post back here if I can't get it working. On Jul 12, 11:35 am, AtlantaGeek <[EMAIL PROTECTED]> wrote: > It's always

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-12 Thread AtlantaGeek
t, selectFirst: false, extraParams: { 'CustNo': '436887' } }); }); On Jul 11, 5:46 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > AtlantaGeek wrote: > > The guy that originally

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-11 Thread AtlantaGeek
Ok, Jörn, thanks for that info. I think I will try it out. I don't plan on doing the things you mention, AFAIK, so perhaps it will work out for me. On Jul 11, 5:46 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > AtlantaGeek wrote: > > The guy that originally put me on to

[jQuery] Re: jquery book

2007-07-11 Thread AtlantaGeek
So it seems the reference book is not available, yet, correct? On Jul 9, 10:57 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > 2. jQuery Reference Guide is a 250+ page complete reference to the > jQuery API and selector expressions (up to v1.1.2), plus individual > chapters on the Dimensions p

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-11 Thread AtlantaGeek
I still think some of my posts are getting massively delayed (actually, I know this is happening) or canned completely . . . At present, I don't have the luxury of "playing around", so I was wondering what is the most stable version that has been posted. Your original version seems to be working

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-11 Thread AtlantaGeek
to use in this web site. Is there some version of your work that you consider to be stable? The site Dan referred me to seems to indicate some level of stability. On Jul 10, 2:37 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > AtlantaGeek wrote: > > Now if I could only make sense

[jQuery] Re: JQuery - CrossBrowser? - Script not working in Firefox

2007-07-10 Thread AtlantaGeek
Ok, thanks for those suggestions. I'm only starting off with JQuery. I hope to keep learning about it. At present, the syntax is very strange. On Jul 10, 8:42 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > >Ok, so you "da man" when it comes to this AutoCompleter? I did try > >the page f

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-09 Thread AtlantaGeek
Now if I could only make sense of that page.So you wrote that mod to the original AutoCompleter by Dylan V and now you and this other guy Joern are working on it? Sorry, just trying to understand who's who. What should I download from that page? On Jul 9, 8:49 am, "Dan G. Switzer, II" <[EMA

[jQuery] Re: JQuery - CrossBrowser? - Script not working in Firefox

2007-07-09 Thread AtlantaGeek
Ok, so you "da man" when it comes to this AutoCompleter? I did try the page from FF and it definitely worked. Would you mind looking at the code? function findValue(li) { if( li == null ) return alert("No match!"); // if coming from an AJAX call, let's use the CityId as the val

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread AtlantaGeek
ossBrowser? - Script not working in Firefox" posting, I'd certainly appreciate it. On Jul 8, 6:10 am, "Dylan Verheul" <[EMAIL PROTECTED]> wrote: > You can insert it directly (serverside, so PHP, CF, whatever floats > your boat) into the script. > > Use the extraP

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread AtlantaGeek
Thanks, but before I go into my reply, I wanted to say that I'd posted hours earlier and it did not show up. I got the "your post was successful" message, but it's simply not here. Have you had this happen? I will try your suggestion. I'm not sure exactly where to put it, but I'll experiment.

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-08 Thread AtlantaGeek
$('#CustNo').val() is not working. How can I get the CustNo value set dynamically to the value in a hidden field? On Jul 6, 10:46 pm, AtlantaGeek <[EMAIL PROTECTED]> wrote: > Thanks. Can I get that customer number from the hidden field, > though? I'll try $(&

[jQuery] JQuery - CrossBrowser? - Script not working in Firefox

2007-07-08 Thread AtlantaGeek
With JQuery supposedly crossbrowser capable, I did not think the script I'm using would have any issues in Firefox. Dumb thought, perhaps. It doesn't seem to execute at all in Firefox. It's the AutoCompleter located at http://www.pengoworks.com/workshop/jquery/autocomplete.htm. It's working we

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-07 Thread AtlantaGeek
Thanks. Can I get that customer number from the hidden field, though? I'll try $('#CustNo').val() but if that doesn't work, I'd be at a loss . . .

[jQuery] Using AutoCompleter, how do you pass parameters

2007-07-06 Thread AtlantaGeek
I'm using a modification of Dylan Verheul's AutoCompleter that can be found at http://www.pengoworks.com/workshop/jquery/autocomplete.htm. I need to pass not only the user's input, but the customer number. On a full hit, I know it from the logged in user, on an AJAX call I need another way to det