[jQuery] jQuery UI praises and questions

2007-09-17 Thread David Duymelinck
Great work on the jQuery UI, I take my hat off for all who worked on it, keep it up and keep amazing us!! In the docs it isn't mentioned which version of jQuery you have to use and if it's possible to use the compontents separate? ps : other jQuery UI question i will post in the jQuery UI

[jQuery] Re: jQuery UI praises and questions

2007-09-17 Thread John Resig
Good call - I just went back and added dependency information to all the components - yes, it's possible to use them separately. I'll have to flush out the docs on this some more, once I'm awake. --John On 9/17/07, David Duymelinck [EMAIL PROTECTED] wrote: Great work on the jQuery UI, I take

[jQuery] Announce: jQuery UI 1.0 Released

2007-09-17 Thread John Resig
Hi Everyone - We just pushed the brand-new jQuery UI 1.0 out the door. The full release notes: http://jquery.com/blog/2007/09/17/jquery-ui-interactions-and-widgets/ The jQuery UI site: http://ui.jquery.com/ Enjoy! Reminder: We have a jQuery UI mailing list, if you're interested in discussing

[jQuery] Looking for OnMinimize/OnMaximize

2007-09-17 Thread Pops
I am wondering if there is a better solution than looking for a onMinimize/OnMaximize events. Basically, I have a hidden div container with a applet tag that was injected with a button click. Once injected the applet is auto- activated. If the page is minimized and restored, the applet is

[jQuery] Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread Bernd Matzner
It really makes things easier when selecting elements with variables. Bernd

[jQuery] Re: Disable the Firefox Error Console

2007-09-17 Thread quayfee
Hi, As Erik explained jQuery doesn't do anything special to interact with the error console. I found the my issue was being caused by the way I was interacting javascript with a tag elements. Hope that helps you. Cheers Keith 胡争辉 wrote: What is the code ? 2007/9/15, quayfee [EMAIL

[jQuery] Re: jQuery UI already released?

2007-09-17 Thread Duncan Heal
Moo who? I'm glad I made the switch. jQ UI rocks. Duncan - - - - - - - - - - - - - - - - - Sprocket Web Design www.sprocket.co.nz - - - - - - - - - - - - - - - - - On 17/09/2007, at 3:01 PM, Kyle wrote: I am very excited about this. I hope to start on a small project for a class tonight as

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread Giovanni Battista Lenoci
John Resig ha scritto: We just pushed the brand-new jQuery UI 1.0 out the door. Very, very, very cool! I love you all :-)

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread Stephan Beal
On Sep 17, 9:36 am, Bernd Matzner [EMAIL PROTECTED] wrote: It really makes things easier when selecting elements with variables. Amen! Is there any chance of getting gt/lt() back in? My main arguments are: a) the same as above: working with variables is easier than when using selectors. b)

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread David Duymelinck
I have to agree with Stephan about the slice method, it's not intuitive. But why do you want to use eq/lt/gt as methods if you have them as selectors? Can you give an example where a method can do more than a selector? -- David Stephan Beal schreef: On Sep 17, 9:36 am, Bernd Matzner

[jQuery] idea to track plugin updates: myJquery.com

2007-09-17 Thread Alexandre Plennevaux
hi all, This email presents a suggestion for a community tool, maybe it's already under preparation, AFAIK, it is not. (but myjquery.com is already taken so maybe...) Discovering with lust and pleasure the update to 1.2.1 this morning i realized the recurring complain about how to keep track

[jQuery] parents() clears vars

2007-09-17 Thread Nikola Ivanov
I have the following funtion: function foo() { console.log( arguments ); // -- OK var e = arguments[0]; console.log( e );// -- OK var p = arguments[0].parents( 'li' ); // -- problem occurs ONLY if this selection is empty

[jQuery] parents() clears vars

2007-09-17 Thread Nikola Ivanov
I have the following funtion: function foo() { console.log( arguments ); // -- OK var e = arguments[0]; console.log( e );// -- OK var p = arguments[0].parents( 'li' ); // -- problem occurs ONLY if this selection is empty

[jQuery] Re: parents() clears vars

2007-09-17 Thread Erik Beeson
What does OK mean? What's the problem? How are you trying to use this function? --Erik On 9/17/07, Nikola Ivanov [EMAIL PROTECTED] wrote: I have the following funtion: function foo() { console.log( arguments ); // -- OK var e = arguments[0]; console.log( e );// --

[jQuery] pngFix - not working

2007-09-17 Thread Chboc
Hello, On my example, i have a list of link to load some png in a div. For the first click, the fix work but on the next click the pngfix don't work anymore. Anyone can tell me what's wrong with this example ? example : http://www.hybridbears.com/pngFix/index.htm (Of course, IE only) --

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread Tane Piper
Well I own the URL, getjQuery.org - it's due for renewal in December and I wasn't going to re-new it, but if you want to go ahead with this, i'd be happy to donate it. On 9/17/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi all, This email presents a suggestion for a community tool,

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread mouqx xu
the slider demo does not work in opera 9.23 On 9/17/07, John Resig [EMAIL PROTECTED] wrote: Hi Everyone - We just pushed the brand-new jQuery UI 1.0 out the door. The full release notes: http://jquery.com/blog/2007/09/17/jquery-ui-interactions-and-widgets/ The jQuery UI site:

[jQuery] Re: parents() clears vars

2007-09-17 Thread Nikola Ivanov
What does OK mean? It means, that I'm getting the expected output. What's the problem? The problem is that after calling e.parents(), arguments gets cleared out and is afterwards empty, but only when parents( 'li' ) is empty. How are you trying to use this function? I have a recursive tree

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread David Duymelinck
I understand people want to use the latest version of jQuery and plugins for all of their projects but i don't think it's possible. Projects have deadlines so sometimes you have to use the things that are available at the time and i don't see anyone changing a projects code just because a

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread Stephan Beal
On Sep 17, 10:23 am, David Duymelinck [EMAIL PROTECTED] wrote: But why do you want to use eq/lt/gt as methods if you have them as selectors? Can you give an example where a method can do more than a selector? You can do more with a selector in SOME contexts, and only after converting your

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread David Duymelinck
The reason why i asked has more to do with removing same selector/method functionality out of the jQuery core than advocating for selectors. I see no reason to keep parallel functionality in the core. As for your example couldn't you do something like var c = a+b; $(...:lt(c)); Using a

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread Stephan Beal
On Sep 17, 12:46 pm, David Duymelinck [EMAIL PROTECTED] wrote: As for your example couldn't you do something like var c = a+b; $(...:lt(c)); Using a method you would have to do that so you save some bytes. Absolutely, but it's still inelegant, IMO. i find $(...).lt(a+b) to be clearer.

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread John Resig
Why not help to add that to the main jQuery plugin repository? We already have all the plugins and the full application, you could write the tracking feature and get it in. --John On 9/17/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi all, This email presents a suggestion for a

[jQuery] jQuery UI demos: minor bug in Tabs demo?

2007-09-17 Thread Stephan Beal
Hiya! http://ui.jquery.com/ i'm looking through the Tabs demo (nice stuff) and i noticed that the Ajax tabs demo appears to have a problem. When i click on any tab, i see a brief loading... text, then no content. Is this as designed? If so, i would recommend putting some dummy content in there

[jQuery] Re: jQuery UI demos: minor bug in Tabs demo?

2007-09-17 Thread John Resig
Please post this to the jQuery UI list, instead of the main list: http://groups.google.com/group/jquery-ui --John On 9/17/07, Stephan Beal [EMAIL PROTECTED] wrote: Hiya! http://ui.jquery.com/ i'm looking through the Tabs demo (nice stuff) and i noticed that the Ajax tabs demo appears to

[jQuery] select items with a class beginning with a given string?

2007-09-17 Thread jazzle
How do I select items with a class beginning with a given string? e.g.: I have ... tr class=hidden row-odd POID49... tr class=hidden row-even POID49... tr class=hidden row-odd POID50... ... and want to hide all the rows with any POID and then show all the rows with POID49. I know there are

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread Stephan Beal
On Sep 17, 11:27 am, David Duymelinck [EMAIL PROTECTED] wrote: I understand people want to use the latest version of jQuery and plugins for all of their projects but i don't think it's possible. agreed 100%. As far as jQuery is concerned i would rather see a table of methods and

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread Alexandre Plennevaux
Hey sure! Just give me the keys to your kingdom and i'll do it! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: lundi 17 septembre 2007 13:23 To: jquery-en@googlegroups.com Subject: [jQuery] Re: idea to track plugin updates:

[jQuery] Re: select items with a class beginning with a given string?

2007-09-17 Thread jazzle
Stephan Beal-3 wrote: http://docs.jquery.com/Selectors/attributeContains#attributevalue ... http://docs.jquery.com/Selectors/attributeStartsWith#attributevalue Thanks, I guess the former is more likely to work, given the spaces, but it didn't appear to when I tried earlier. I have since

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread Sam Collett
On Sep 17, 1:06 pm, Stephan Beal [EMAIL PROTECTED] wrote: i think the main reason lt/gt were removed was because you can do the same thing with slice(). John Resig said in a post a week or so ago that they were also removed because they did only one thing, and didn't do it terribly well (or

[jQuery] Re: select items with a class beginning with a given string?

2007-09-17 Thread Stephan Beal
On Sep 17, 2:34 pm, jazzle [EMAIL PROTECTED] wrote: How do I select items with a class beginning with a given string? This might (indirectly) do what you're trying to do: http://docs.jquery.com/Selectors/attributeContains#attributevalue but that searches IN strings (not anchored to the

[jQuery] Each events and safari

2007-09-17 Thread Daniel Rossi
Hi ive noticed the each event only gets called once per page load in safari. Is there any way around this. Is it a bug ?

[jQuery] Re: parents() clears vars

2007-09-17 Thread Nikola Ivanov
Gee, I've just read my last post: I couldn't understand my point :). Sorry about that, I will give it a new shot: Consider the tree: ul class=treeview liaspanel 1/span/a/li liaspanel 2/span/a/li li aspanel 3/span/a ul liaspanel 3.1/span/a/li liaspanel 3.2/span/a/li

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread Matt Kruse
On Sep 17, 4:26 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: solution name: myJquery.com I own MyJQuery.com, and your description was also part of my intent for the domain. Unfortunately I've not had any free time to develop a site around it, and I'm not sure I ever will. I will give the

[jQuery] Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
I have a form that is using both the ajaxFileUpload and the MultiFile plugins. When a user selects a file for upload, the change event uploads the file via ajax for validation. If an error occurs, I need to remove the file from the MultiFile queue. I can (and have) manually removed the

[jQuery] Re: Bug in slide up/down? Contents of target hide as well, but don't show also.

2007-09-17 Thread Andy Matthews
Eh? Not sure what you mean. Would that be a CSS attr? Done with JS, CSS? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent: Sunday, September 16, 2007 10:11 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Bug in slide up/down?

[jQuery] datepicker and mark a day

2007-09-17 Thread amircx
hey. i using datepicker and i want somehow to define to this script that he will add diffrent background to some block of a day all the days are RED background 07/07/2007 - GREEN BACKGROUND like to mark a specipic date for hollyday or somthing else... i did

[jQuery] Job Posting: Javascript/JQuery Developer

2007-09-17 Thread Assembla
Primary responsibility for developing and maintaining a web-based desktop that integrates multiple application services for scientists and researchers. The desktop, which uses a windowing metaphor with direct manipulation and visual alerts, will be extended with a range of new applications

[jQuery] Re: Job Posting: Javascript/JQuery Developer

2007-09-17 Thread Assembla
OOPS: http://www.assembla.com/search/show_job/73 On Sep 17, 9:58 am, Assembla [EMAIL PROTECTED] wrote: Primary responsibility for developing and maintaining a web-based desktop that integrates multiple application services for scientists and researchers. The desktop, which uses a windowing

[jQuery] Re: Bug in slide up/down? Contents of target hide as well, but don't show also.

2007-09-17 Thread rolfsf
try adding it to the css for your container div div.yourDiv { zoom: 1; } Andy Matthews-4 wrote: Eh? Not sure what you mean. Would that be a CSS attr? Done with JS, CSS? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent:

[jQuery] Re: TableSorter properties

2007-09-17 Thread Christian Bach
Hi Rigent, Try this: Change: table id=#sorttable To: table id=sorttable I will be releasing version 2.0.1 of tablesorter today or tomorrow with support for jQuery 1.2. /christian 2007/9/15, Rigent [EMAIL PROTECTED]: I'm loving the tablesorter plugin, everything works splendidly except

[jQuery] Re: Tablesorter 2.0

2007-09-17 Thread Christian Bach
Hi Guys, I have been stuck on a small island in Greece the last two weeks working on project called vacation. I will be releasing a 2.0.1 version of tablesorter (tonight or tomorrow) that takes care of these issues. /christian 2007/9/16, Rodrigo Moraes [EMAIL PROTECTED]: On 9/14/07, James

[jQuery] Re: jQuery UI praises and questions

2007-09-17 Thread Andy Matthews
I'd say that now that the UI is released, questions/comments can and should be posted to THIS list. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Monday, September 17, 2007 2:01 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: jQuery UI praises and questions

2007-09-17 Thread Rick Faircloth
I tend to agree with Andy... Is it *really* necessary to divide the conversations about jQuery and its UI into two separate mailing lists? Will the subject matter for each list have more or less in common with each other? If the subject matter tends to overlap, combine the lists. If the

[jQuery] Re: jQuery source code readability

2007-09-17 Thread kuralj
Hi John, Thanks for the reply :) I was hesitant posting as I wasn't sure how it would be perceived but I appreciate the response. I'm going to spend some more time going through the source and hopefully between any work done at the developer end and familiarising myself with the style, there

[jQuery] Re: jQuery UI already released?

2007-09-17 Thread Adwin Wijaya
the ui.jquery.com mentioned that we can download ui 1.0 but i got this xml Error CodeNoSuchKey/Code MessageThe specified key does not exist./Message Keyui-1.0.zip/Key RequestId98B7FD0A90EF331D/RequestId HostId bqlj57YlE9zlvYmyBQKqheLzAHHg1BwSyP0he48+TVt/AN2454MMxonzCnWN2HPG /HostId

[jQuery] Re: Browser compatibility

2007-09-17 Thread 胡争辉
Would you please show the full code? 2007/9/15, malebrok [EMAIL PROTECTED]: This code works in firefox but not in ie (6.0) : div class=bookDiv div class=theHover onmouseover=$ (this).parent().find('.bookCoverTxt').fadeIn('medium')/div img src=img border=0 class=bookCover / div

[jQuery] How come I cannot register for account in JQuery, email never arrives!

2007-09-17 Thread Kush mann
How come I cannot register for account in JQuery, email never arrives! Or have I missed something -K

[jQuery] Re: pngFix - not working

2007-09-17 Thread Kush mann
Hi, Plugin you are using, hides your img tags and wraps your img in span. There is another plugin that keeps your img intact: http://khurshid.com/jquery/iepnghack/ Hope it helps -Kush

[jQuery] Bug with $.ajax and IE

2007-09-17 Thread Fabrizio
Hello , I have made a very simple test with jquery and the funcrion $.ajax. This project is very simple and I works find wint firefox. I have basic html page. I have a javascript page with that code : $(document).ready( function(){ $.ajax({ type: POST,

[jQuery] Re: FadeIn

2007-09-17 Thread 胡争辉
Have you noticed the display: none;? html head script src=jquery-1.2.js/script script $(document).ready(function() { $('#fadein').fadeIn('slow'); }); /script /head body div id=fadein style=display: none;font-size:

[jQuery] Re: how to check hide elements?

2007-09-17 Thread Theodore Ni
You should be able to test if an element is hidden by doing something like $(element).is(:hidden) which should return true or false. On 9/17/07, james_027 [EMAIL PROTECTED] wrote: hi, using the hide() function, how do I know if an element is hidden or not? THanks james -- Ted

[jQuery] Re: John's Pager - best plugin no one uses?

2007-09-17 Thread astik
With the new version of jQuery out (1.2), some specific code is no longer working ... The lt and gt method are now deprecated ... Here is the modification to the pageTrim method : function pageTrim(){ if (!spread || spread.constructor != Function ) {

[jQuery] Re: treeview plugin - store option doesn't work to remember which items were clicked

2007-09-17 Thread Pedro Teixeira
It seems the option was there until the following revision: http://dev.jquery.com/browser/trunk/plugins/treeview/jquery.treeview.js?rev=2973 not sure what happened and where it was moved to... []'s On Sep 14, 11:35 am, Pedro Teixeira [EMAIL PROTECTED] wrote: can't make it work for me either -

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread Adwin Wijaya
Congratulations :D I wil try at home tonight :D btw, when I tried on the thumbnail, why it always asking the server for large image ? (we usually use cache instead of asking the server all the times.. ) .. just asking ;) great job guys .

[jQuery] Catching events on page elements inserted into the DOM

2007-09-17 Thread slh
Hi guys, this is my first post here so go easy on me :) When uding append() to add new xhtml elements to a page, why cannt javascript recognise event related to the new elements? for example using the JQuery $('a').click(function(){ alert($(this).text());

[jQuery] Re: pngFix - not working

2007-09-17 Thread Kush mann
Problem with plugin you are using is that is wrapped you img within span then hiding your img. Try using this plugin instead: http://khurshid.com/jquery/iepnghack/ It keeps all tags intact.

[jQuery] jQuery 1.2 Release Notes on IE6

2007-09-17 Thread EdMartin
Is it just me or is the left hand column of the New Features section invisible on IE6? It doesn't appear to be an instance of the peekaboo bug because mouse activity and/or scrolling does not reveal the missing material. In particular, you can't select it with the mouse. However, the links on

[jQuery] Catching events on page elements inserted into the DOM

2007-09-17 Thread slh
Hi guys, this is my first post here so go easy on me :) When uding append() to add new xhtml elements to a page, why cannt javascript recognise event related to the new elements? for example using the JQuery $('a').click(function(){ alert($(this).text());

[jQuery] Events, forms and AJAX

2007-09-17 Thread slh
Hi I posted a question earlier, this is the updated version based on further understanding. in order fir Jquery to recognise the events of the second form I had to nest the code this this: $('form').submit(function(event){ //$('#content').empty();

[jQuery] draggable: manually reset position of element by drag callback handler

2007-09-17 Thread Andre Uhlig
hi, because this is my first post to this group, thanks for jquery + ui and sorry for the incomprehensible subject. I'll try to explain it a little bit clearer. I'm developing something like a Google Maps clone for large images ( 200 mega pixels). Of course I can't display all generated image

[jQuery] Re: help with interface ondrop function

2007-09-17 Thread 胡争辉
The example can not run any effect. 2007/9/16, Giovanni Battista Lenoci [EMAIL PROTECTED]: Here is my example, then I can better explain the problem: http://www.gianiaz.net/jquery/tree/ -- http://www.goumin.com/ QQ: 443089607 QQ mail: [EMAIL PROTECTED] Skype: huzhenghui Gtalk: huzhengh

[jQuery] Best Practice? Sliding table rows up and down

2007-09-17 Thread Andy Matthews
I've been in this situation before and gone a different route, but this time I'd really like to use a table for my data, but have the ability to show/hide certain rows using slideUp/slideDown. I originally tried sliding the actual TR up/down but it wasn't working correct. I ahve a table with 6

[jQuery] postbacks, $(document).ready(), and asp.net

2007-09-17 Thread Rob
I'm having an interesting problem that happens in both IE6 and Firefox. My menu script runs fine when the page first loads. It sets the style of certain table elements when the $() ready function fires, all is good. But on postbacks (button clicks), the script runs fine, the style is updated, but

[jQuery] draggable: manually reset position of element by drag callback handler

2007-09-17 Thread Andre Uhlig
hi, because this is my first post to this group, thanks for jquery + ui and sorry for the incomprehensible subject. I'll try to explain it a little bit clearer. I'm developing something like a Google Maps clone for large images ( 200 mega pixels). Of course I can't display all generated image

[jQuery] Re: TableSorter properties

2007-09-17 Thread Rigent
Oops, thanks Christian, that error was only in the post though, not in the actual HTML I'm using. If there's nothing fundamentally wrong with my init function I'll wait and see if your updates tomorrow fix it. Thanks again for your work on this plugin. Cheers Christian Bach wrote: Hi

[jQuery] Re: jQuery 1.2 Release Notes on IE6

2007-09-17 Thread John Resig
We just changed the layout - you'll need to clear your cache to remove the old CSS file. --John On 9/17/07, EdMartin [EMAIL PROTECTED] wrote: Is it just me or is the left hand column of the New Features section invisible on IE6? It doesn't appear to be an instance of the peekaboo bug

[jQuery] Falling at the first hurdle

2007-09-17 Thread Jay
Having major problems getting anything set up here. http://jquery.com/demo/thickbox/ On the above page it says I should download the files mentioned and put them in my scripts folder which I did. In my page (aspx) I have this script type=text/javascript src=scripts/jquery-1.2.pack.js

[jQuery] Re: Falling at the first hurdle

2007-09-17 Thread Michael Price
Jay wrote: Having major problems getting anything set up here. http://jquery.com/demo/thickbox/ On the above page it says I should download the files mentioned and put them in my scripts folder which I did. In my page (aspx) I have this script type=text/javascript

[jQuery] Re: Creating a sliding onload effect

2007-09-17 Thread Joel Birch
On 9/17/07, Steven Foers [EMAIL PROTECTED] wrote: Hi I have a menu made from an unordered list containing 4 menu items that I'd like to slide down from the top of the page onload. The menu is horizontal and I want it to stop around 20px from the top of the page. Once the menu has slid onto

[jQuery] Re: TableSorter properties

2007-09-17 Thread Christian Bach
Hi, A very good undocumented feature is a option called debug, which will give you all kinds of information about what tablesorter is up to. Try this: $(#sorttable).tablesorter( {cssAsc:sortasc,cssDesc:sortdesc, headers:{0: {sorter: false}, 4: {sorter: date}}, sortList: [[1,0]],

[jQuery] How to trigger event when user gets to end of content in a scrollable div

2007-09-17 Thread spills
I am new to jQuery and have not a clue how to trigger an event when a user gets to the end of scrollable content in a div. For example many sites have a Terms and Conditions content box that when you get to the end it enables accept yes and no radio buttons and a submit or continue button. I just

[jQuery] Re: Best Practice? Sliding table rows up and down

2007-09-17 Thread Glen Lipka
Often padding, borders and margins get in the way of smooth animation. The same goes for UL structures as Tables. This is part of Box Model Hell (my own nightmare). Although I REALLY like clean code with virtually nothing in it, I often have to add divs and layer them so that I don't put

[jQuery] Re: TableSorter properties

2007-09-17 Thread Rigent
You have to love undocumented features :) Using the debugger I noticed that all of my columns were being parsed as 'text' so I downloaded the unpacked JS (I'm not much of a fiddler) and looked for the parser names the script was looking for. I should have done this before I assumed that 'date'

[jQuery] Re: How to trigger event when user gets to end of content in a scrollable div

2007-09-17 Thread Glen Lipka
Im going to take a guess. Try this plugin. http://brandonaaron.net/docs/dimensions/# Then put a onScroll event on the box its in. $(p).scroll( function() { alert(Hello); } ); Onscroll, report back to a function to check (with dimensions) the scrollTop number. If it's higher than X (which you

[jQuery] Re: blockUI IE6 checkbox

2007-09-17 Thread seedy
I must be hallucinating I swear this was working on friday. I just checked it and the same problem seems to be occuring in IE6/7 http://devweb1.ttisolutions.com/jqueryTests/blockui/ malsup wrote: Thanks for the fix, Ted! Great work! I've made the change and checked it in.

[jQuery] Re: Best Practice? Sliding table rows up and down

2007-09-17 Thread Andy Matthews
Update. I found that one of the reasons the animation was a little choppy was that that I wasn't explicitly defining widths for the TD in my table. Once I defined those, the animation was much smoother. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[jQuery] Re: jQuery UI praises and questions

2007-09-17 Thread seedy
Can the jQuery UI group be accessed using nabble? I prefer to use nabble and I didn't see it in the search John Resig wrote: Please PLEASE keep them separate, I don't understand why this is an issue. If you're doing stuff with jQuery UI, please post the issues in the jQuery UI list. If

[jQuery] Re: Preloading an image before further handling

2007-09-17 Thread To
It works with Theodore's code... Sweet! Thanks, To On Sep 16, 5:10 pm, Theodore Ni [EMAIL PROTECTED] wrote: Instead of using $(document).ready( ... ), you can try to use $(window).load( ... ): $(window).load(function() { $(#photo).fadeIn(slow); }); I believe that will wait until

[jQuery] Sliding Animation Error(s)

2007-09-17 Thread muccy
Hello people, I'm trying to develop an animation to swap my contents. Former I tried to use Interface pugin ad follows: ...but Firebug said: this.options.curAnim has no properties (no name)()jquery.js (line 11) t()jquery.js (line 11) (no name)()jquery.js (line 11) [Break on this error]

[jQuery] Re: jQuery 1.2 Release Notes on IE6

2007-09-17 Thread EdMartin
Unfortunately, that makes no difference. Even after intense and radical cache flushing, I still have an invisible left column in the New Features section when using IE6 to view http://docs.jquery.com/Release:jQuery_1.2 and, incidentally, when viewing http://docs.jquery.com/Release:jQuery_1.2.1

[jQuery] Re: Superfish Question (v1.3.1)

2007-09-17 Thread Joel Birch
Thanks Jacob. I wondered if you would be interested in checking out my initial attempt at adding the callback function feature. A beta version of the new JS file is here: http://users.tpg.com.au/j_birch/plugins/superfish/superfish-1.3.2b.js That file should work with whatever example you have

[jQuery] Re: Best Practice? Sliding table rows up and down

2007-09-17 Thread Karl Swedberg
The other issue with table rows is the value applied to the display property when they are shown. IIRC, the display property is reset to block, but this messes up the layout in FF, because it requires display: table-row to be shown properly. There was an update to jquery.js back in late

[jQuery] Re: Best Practice? Sliding table rows up and down

2007-09-17 Thread Rick Faircloth
@Andy. got a URL I can view? I've been trying to get smooth animation with tables for awhile and wonder what your solution is. @Dave. got a URL for your approach? Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Monday, September 17,

[jQuery] Re: Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
On Sep 17, 9:17 am, Rob Wilkerson [EMAIL PROTECTED] wrote: I have a form that is using both the ajaxFileUpload and the MultiFile plugins. When a user selects a file for upload, the change event uploads the file via ajax for validation. If an error occurs, I need to remove the file from the

[jQuery] Re: Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
On Sep 17, 9:17 am, Rob Wilkerson [EMAIL PROTECTED] wrote: I have a form that is using both the ajaxFileUpload and the MultiFile plugins. When a user selects a file for upload, the change event uploads the file via ajax for validation. If an error occurs, I need to remove the file from the

[jQuery] Announce: jQuery Tablesorter 2.0.1 Released

2007-09-17 Thread Christian Bach
Hi list! Just uploaded the new version of tablesorter that works with the 1.2 release of jQuery. Here are the main changes in version tablesorter 2.0.1 General * Removed the need for Dimensions plugin when using the pagination plugin thanks to offset being included in the jQuery 1.2 core. *

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread Eridius
Are all the plugin released under the MIT license or do each plugin have thier own license? John Resig wrote: Hi Everyone - We just pushed the brand-new jQuery UI 1.0 out the door. The full release notes: http://jquery.com/blog/2007/09/17/jquery-ui-interactions-and-widgets/ The

[jQuery] Re: Superfish Question (v1.3.1)

2007-09-17 Thread Jacob Stuart
Hey Joel, Thanks for the excellent and clear response. I personally really appreciated the detail and thoroughness of it. Good luck on implementing the function call(s) and thanks for continuing to refine your extremely handy plugin. Cheers, Jacob Stuart On Sep 16, 11:25 pm, Joel Birch [EMAIL

[jQuery] Re: Announce: jQuery Tablesorter 2.0.1 Released

2007-09-17 Thread Rigent
Great stuff Christian thanks! -- View this message in context: http://www.nabble.com/Announce%3A-jQuery-Tablesorter-2.0.1-Released-tf4468417s15494.html#a12742917 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] TableSorter demo not sorting under IE7

2007-09-17 Thread cburke
In the jQuery demo, the TableSorter widget appears with several data rows, and I can toggle sort direction by clicking, but the table rows never actually get sorted. All of the data stays in the order in which it was originally loaded. Is this intended with this demo? (I would expect not, given

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread John Resig
What's the preferred method for feedback? Via the jQuery UI mailing list. http://groups.google.com/group/jquery-ui --John

[jQuery] jQuery Forms for COLDFUSION

2007-09-17 Thread [EMAIL PROTECTED]
pThe version 1.0 of the Ctag based on the powerfull forms plugin of Jquery has been released./p pSome of the features/p ul liPlace how many forms you need in the same page and set different behaviour for any of them. The tag will load the needed JS and write the jQuery statement for you/li

[jQuery] Re: Weird bug with firefox on MAC

2007-09-17 Thread [EMAIL PROTECTED]
I also have thisproblem. I am using the Drupal CMS, and the SimpleMenu module uses jquery, as does a slideshow I've implemented. Each of these independently will cause text on the page to flicker or blink during the fadein/out. With the slideshow, if I reduce the fade period to zero, the problem

[jQuery] Re: Best Practice? Sliding table rows up and down

2007-09-17 Thread Collin Allen
One of the issues I ran into with animating tables (specifically, TRs), is that jQuery appears to change the 'display' style from table- row to block while animating, resulting in the row breaking completely while animating, then popping back into place when the animation is complete. I'd love

[jQuery] Re: Superfish Question (v1.3.1)

2007-09-17 Thread Jacob Stuart
Joel, Good work, it seems to function as intended. Unfortunately, I can't really use it for my purposes. You implemented it exactly as I had requested, but what that translates into for my code is the shifting of the drop-down's left position occurs after the animation to reveal it is complete.

[jQuery] multiple select box to textarea

2007-09-17 Thread FrankTudor
Hi all, I am creating a little tool that has two multiple select boxes and then a text area. I need to figure out how to take the selected conets of one box, or the other, or both and pop them to the textarea. If there are no examples can someone tell me what dom or events I need to be looking

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread John Resig
Are all the plugin released under the MIT license or do each plugin have thier own license? They should all be dual-licensed under the MIT and GPL. --John

[jQuery] Re: jQuery Forms for COLDFUSION

2007-09-17 Thread [EMAIL PROTECTED]
Yes Speialist, this should make things much more complicate loosing the nice of the script that is to make things writing few attributes. Have a try and let me know Thanks Andrea On 17 sep, 15:08, Web Specialist [EMAIL PROTECTED] wrote: Very good. But I choose another Jorn's approach to

[jQuery] Re: How do you tie sortables into the back-end with ajax?

2007-09-17 Thread John Resig
Are you talking about jQuery UI? If so, you should bring it up for discussion on the jQuey UI mailing list: http://groups.google.com/group/jquery-ui --John On 9/17/07, cliff [EMAIL PROTECTED] wrote: List sorter functionality is way cool, but isn't very useful unless I can tie it into the

  1   2   >