[jquery-ui] Re: Excluding hidden elements from serialize

2008-09-24 Thread markus.staab
or use a different selector $('#sortme:not(:hidden)').sortable('serialize'); On 25 Sep., 07:42, Josip Lazic <[EMAIL PROTECTED]> wrote: > On Sep 25, 2:18 am, "Nate Laws" <[EMAIL PROTECTED]> wrote: > > > Why don't you simply delete the item? > > $(this).parents(".sortitem").hide("slow").remove();

[jquery-ui] Re: Excluding hidden elements from serialize

2008-09-24 Thread Josip Lazic
On Sep 25, 2:18 am, "Nate Laws" <[EMAIL PROTECTED]> wrote: > Why don't you simply delete the item? > $(this).parents(".sortitem").hide("slow").remove(); Thak you, this helped me. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

[jquery-ui] How Can I Help Get Google Analytics / urchinTracker out of demos/etc?

2008-09-24 Thread Noodler
new to jQuery UI--rah! rah! rah! Mr. Resig and the rest have a very, very good thing in jQuery. downloaded the example code and all of the web pages have google analytics code in them how may I help fix that? thanks, --jim --~--~-~--~~~---~--~~ You received th

[jquery-ui] Re: Datepicker and ThemeRoller - additional rules for disabled/unselectable items

2008-09-24 Thread Van
Thanks Paul, this fixed my problem, too. Why isn't hideIfNoPrevNext set to 'true' by default? On Aug 14, 3:35 am, Paul Carey <[EMAIL PROTECTED]> wrote: > > When the month next/prev buttons are disabled (because of the date > > range), I didn't like that a label with '' was > > displaying. I no

[jquery-ui] Re: how to use links in accordion?

2008-09-24 Thread ulfk
Thanks. I used the 2nd example on the demo page: jQuery('#navigation').accordion({ header: '.head', }); and There is one obvious advantage: http://google.com";>You've seen it coming! Buy now and get

[jquery-ui] Re: Excluding hidden elements from serialize

2008-09-24 Thread Nate Laws
Why don't you simply delete the item? $(this).parents(".sortitem").hide("slow").remove(); .sortable('serialize') does not have an option to ignore hidden items. You could also write your own, which shouldn't be too hard :) On Wed, Sep 24, 2008 at 4:52 PM, Josip Lazic <[EMAIL PROTECTED]> wrote:

[jquery-ui] Re: how to use links in accordion?

2008-09-24 Thread Nate Laws
Use the header option. Try doing something like .accordion({ header:"> a"}) which will select only the first child instead of the default all On Wed, Sep 24, 2008 at 6:31 PM, ulfk <[EMAIL PROTECTED]> wrote: > > I'm trying to create shown/hidden content that includes links. However > the links a

[jquery-ui] how to use links in accordion?

2008-09-24 Thread ulfk
I'm trying to create shown/hidden content that includes links. However the links are turned into accordian event triggers. Is there a workaround for this? e.g. You've seen it coming a link within my content: There is one obvious advantage: http://google.com";>You've se

[jquery-ui] Re: Jquery UI conflict with Object.prototype?

2008-09-24 Thread Karl Rudd
Extending Object.prototype is considered extremely bad form: http://blog.metawrap.com/blog/June6thIsJavaScriptArrayAndObjectprototypeAwarenessDay.aspx Yes, it breaks a number of libraries (including jQuery) because it make the for(key in object) more complicated to use. Karl Rudd On Thu,

[jquery-ui] Excluding hidden elements from serialize

2008-09-24 Thread Josip Lazic
I have situation like this: X X X Javascript code is $("#sortme").sortable({ revert: false, scroll: true, update : function (sorted) { serial = $('#sortme').sortable('serialize'); $.ajax({ url: "bildersort.php", type: "POST", data: serial,

[jquery-ui] Re: slider doc.body is null? No handle before click?

2008-09-24 Thread Jaime Ochoa Malagón
On Wed, Sep 24, 2008 at 2:46 AM, Jim Tittsler <[EMAIL PROTECTED]> wrote: > > 1. I have a Drupal 6.4 page that has a number of jquery-ui 1.5.2 > sliders on it, each with a bit of Javascript that sets a corresponding > form textfield. It behaves as expected in Safari, Opera, Camino... > but on Fir

[jquery-ui] Jquery UI conflict with Object.prototype?

2008-09-24 Thread smurkas
Hello again. I've been writing a script today and wanted a quick way to figure out the size of arrays that are initialized like var barValues = {"Lab 1":10, "Lab 2":20, "Lab 3":30} (which seem to be considered as objects) so I wrote a Object.prototype.size that did this for me. However when this w

[jquery-ui] Sortable Target List Placement

2008-09-24 Thread plord
I have a working jquery sort using 2 groups of divs. They are connected and I can drag items from one list to the other. The problem is, the items are always dropping at the bottom of the target list. They will not drop higher in the list. Once dropped, I can then drag them up into position. Ideas

[jquery-ui] UI Tabs- creating external links to tabs

2008-09-24 Thread Adam
I have a case where I am using UI Tabs here, and would like to create 2 external links to 2 of the tabs: http://www.blueinkdesign.com/harvest/new/index.html I need to have the buttons at the bottom right activate the respective tabs. The Contact Us tab (+page) already existed, and I created anothe

[jquery-ui] Re: Drag and drop select option

2008-09-24 Thread iamntz.com
Hi Riaz. Maybe is better if you use a UL instead of that select ? Or you could replace standard select with a js drop down? (like badboy's niceform). After that, things will be way simpler :) On Sep 24, 10:08 am, Riaz <[EMAIL PROTECTED]> wrote: > Hi > > How do I drag and drop a option from a sele

[jquery-ui] Re: Problem with IE 6

2008-09-24 Thread Richard D. Worth
The main jQuery list is still the right place, as this list is dedicated to discussing use of jQuery UI plugins ( see http://ui.jquery.com/ or http://docs.jquery.com/UI for more info). Thanks. Maybe try .attr("className") instead of .attr("class") - Richard On Wed, Sep 24, 2008 at 2:43 PM, Samue

[jquery-ui] Re: Problem with IE 6

2008-09-24 Thread Samuel
I understand, but my problem is not about Thickbox (since it works perfectly in IE6, I tried). I jut mentioned it in case it was useful, and apparently it's not. My problem is about the code I wrote, so you can consider my problem another way : $(document).ready(function(){

[jquery-ui] Different issue with modal dialog on IE

2008-09-24 Thread TimW66
After reading an earlier post, it occurred to me I hadn't yet tested my modal dialog on IE. Upon testing, I discovered several problems. Let me explain what I am doing: We will have up to 7 select boxes and text boxes. We want those to show on the page, but we also want them to show in a modal

[jquery-ui] Re: accordion issue, please help me!

2008-09-24 Thread TimW66
You're not using the jQuery UI Plugin. It has an accordion function built in. Have you looked at this page? http://docs.jquery.com/UI/Accordion Hope that helps. On Sep 23, 10:32 pm, manuqc <[EMAIL PROTECTED]> wrote: > Hello, > > I'm developing a website and added an accordion section to the >

[jquery-ui] Re: Theme roller puts padding on .ui-dialog-content (i.e. dialog content element) - seems to be problematic - also Re: " UI dialog content in IE6 shifted left "

2008-09-24 Thread Shelane Enos
I just downloaded the 1.6rc2 to see if it fixed this issue. The work around I found worked for resetting the content, but my title bar is still shifted to the left. 1.6rc2 didn't fix it. Also, I tried to click on the "Development" link and I got a 404 error. On 9/15/08 8:47 AM, "Shelane Enos"

[jquery-ui] Re: UI.tabs is a little bit too obtrusive to me

2008-09-24 Thread Olive
On Sep 24, 4:10 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 24 Sep., 13:40, Olive <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I'm using UI.dialog and UI.accordion without any problem so far for > > one of my projects. > > > I would also need UI.tabs. > > > The problem is that I can't make

[jquery-ui] Re: UI.tabs is a little bit too obtrusive to me

2008-09-24 Thread Klaus Hartl
On 24 Sep., 13:40, Olive <[EMAIL PROTECTED]> wrote: > Hello, > > I'm using UI.dialog and UI.accordion without any problem so far for > one of my projects. > > I would also need UI.tabs. > > The problem is that I can't make it work for my grid oriented layout > for which I need display:inline DIVs.

[jquery-ui] Re: accordion issue, please help!

2008-09-24 Thread Jörn Zaefferer
Please consider using the accordion plugin, one component of jQuery UI. I don't see any point in helping you implement your own when a stable solution already exists. Jörn On Wed, Sep 24, 2008 at 5:38 AM, manuqc <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm developing a website and added an accor

[jquery-ui] Re: Proper Syntax for setting 'Blind' Speed w/Dialog

2008-09-24 Thread Scott González
Setting the speed is not currently supported. There is a ticket for this, but Trac is currently down while we're switching servers, so I can't tell you which ticket it is. On Sep 23, 4:41 pm, "Greg E." <[EMAIL PROTECTED]> wrote: > Hi all, > > Here's what I have going on: > > //create dialog > >

[jquery-ui] Re: Please help: dialog input slow when modal true in IE

2008-09-24 Thread Scott González
There are a few problems with your suggested proposal. First, it suffers from the same problem as the current implementation. The real problem is that we have to calculate whether the element being used is in the top-most dialog. Also, putting handlers on the overlay wouldn't do anything since

[jquery-ui] UI.tabs is a little bit too obtrusive to me

2008-09-24 Thread Olive
Hello, I'm using UI.dialog and UI.accordion without any problem so far for one of my projects. I would also need UI.tabs. The problem is that I can't make it work for my grid oriented layout for which I need display:inline DIVs. And I would also like to use DIV instead of LI. For now I'm usin

[jquery-ui] how to use links in accordian?

2008-09-24 Thread ulfk
How do I create links within my accordian-ed content? For example, if I want to use http://google.com";>Buy now and get nothing for free!, accordian tries to create a collapsible block for it. There is one obvious advantage: You've seen it coming! http:

[jquery-ui] accordion issue, please help!

2008-09-24 Thread manuqc
Hello, I'm developing a website and added an accordion section to the homepage, so far it works pretty good, I am just having a little problem,all of the links are closed by default I will like to know how can I get to have the first one opened by default. this is the link while I'm still develo

[jquery-ui] slider doc.body is null? No handle before click?

2008-09-24 Thread Jim Tittsler
1. I have a Drupal 6.4 page that has a number of jquery-ui 1.5.2 sliders on it, each with a bit of Javascript that sets a corresponding form textfield. It behaves as expected in Safari, Opera, Camino... but on Firefox 3.0.1 w/Firebug 1.2.1 clicking on a slider yields "doc.body is null" in add(bo

[jquery-ui] Re: Dragging sortables / connected

2008-09-24 Thread tomh
Does anyone have an idea how to solve the problem? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery-ui@googlegroups.com To unsubscribe from this group, se

[jquery-ui] accordion issue, please help me!

2008-09-24 Thread manuqc
Hello, I'm developing a website and added an accordion section to the homepage, so far it works pretty good, I am just having a little problem,all of the links are closed by default I will like to know how can I get to have the first one opened by default. this is the link while I'm still develo

[jquery-ui] Re: UI/Uploader

2008-09-24 Thread Gilles (Webunity)
Pardon my question, but did you take "my" code? It is largely based on SWFUpload (and others) without their permission, so to use that code in production is a bad thing. Sorry i did that, but i wanted to code something very quick. I never got around to fix it completely; way to busy with other stu

[jquery-ui] Re: Problem with Tabs on Dialog in IE7

2008-09-24 Thread Klaus Hartl
I think there's already a ticket for that (bug tracker seems to be down right now). Some IE CSS weirdness again, sometimes it helps to apply hasLayout to the elements. Will have a look into it. --Klaus On Sep 23, 4:55 pm, Finchi <[EMAIL PROTECTED]> wrote: > Hi, > > having a Problem with a Tab o

[jquery-ui] Re: UI Tabs - Mismatching fragment identifier?

2008-09-24 Thread Klaus Hartl
The tabs href fragment identifier has to match an id in the current document. Say you have a link in your tabs unordered list: Tab ... Than you need a matching div with such id being the tab content panel: ... If no such id is found the exception gets thrown. --Klaus On S

[jquery-ui] Drag and drop select option

2008-09-24 Thread Riaz
Hi How do I drag and drop a option from a select list? I tried to search for this problem... read few references... but did not find anything yet... can this be done using JQuery... I am trying to arrange the list items in a sequence, so I want to drag them from one list to another.. Pls let me