[jquery-ui] Re: Can't sort LI items that has also draggable/droppable event listener

2008-10-16 Thread Giovanni Battista Lenoci
Giovanni Battista Lenoci ha scritto: Hi, I'm tryng to organize a menu using draggable/droppable/sortable: I've put an example here: http://lab.gianiaz.com/jquery/sortable-droppable/unsolved.html What I want to do is to move LI nodes between the four list, and be able to sort LI nodes

[jquery-ui] Re: Overlay issue using multiple dialogs on a page

2008-10-16 Thread Scott González
Can you post a sample page showing this problem? Also, which version are you using? On Oct 14, 8:32 am, Jamie [EMAIL PROTECTED] wrote: I have a page with two dialogs in it, both are modal and reference different elements within the page (i.e. two different forms) $(#dialog-page).dialog({  

[jquery-ui] Re: Getting the current droppable from the draggable's move callback

2008-10-16 Thread drzax
For now, even though it feels like a messy solution, I've simply grabbed the selected what should be the droppable using $ ('.droppableOverClass') in the draggable's move callback. Like I said, not awesome, but it works. S. On Oct 15, 12:40 pm, Paul Bakaus [EMAIL PROTECTED] wrote: Hi,

[jquery-ui] Re: Can't sort LI items that has also draggable/droppable event listener

2008-10-16 Thread Giovanni Battista Lenoci
Giovanni Battista Lenoci ha scritto: If I comment the code about the (draggable/sortable)* the sort sorry, * draggable/droppable -- gianiaz.net - web solutions p.le bertacchi 66, 23100 sondrio (so) - italy +39 347 7196482 --~--~-~--~~~---~--~~ You

[jquery-ui] Unorthodox use of tabs.

2008-10-16 Thread M. L. Giannotta
Hello everyone, I am trying to make a little unorthodox use of the Tabs UI. Since it would be quite difficult to explain it in general terms, I will do explain it in my specific case — I hope this is not too much of a problem. So, I have this tabbed interface which has to fit in a quite small

[jquery-ui] Re: Highlighting of special days in datepicker

2008-10-16 Thread Jimbo M
And today it works. Mercury must still be retrograde. --~--~-~--~~~---~--~~ 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,

[jquery-ui] Re: Highlighting of special days in datepicker

2008-10-16 Thread Jimbo M
End result: var cal = $(#calendar).datepicker(); var dates = [1, 5, 12, 21, 27, 30]; $(dates).each(function(i, d) { cal.find(a[innerHTML= + d + ]).parent().addClass(myClass); }); I needed to use innerHTML instead of text. --~--~-~--~~~---~--~~ You received this

[jquery-ui] Autocomplete and Modal Dialog - Select Box hidden

2008-10-16 Thread patrick davey
Hi, I am trying to pop an autocomplete in a modal dialog (rather than thickbox which was on the demo page here): http://jquery.bassistance.de/autocomplete/demo/ The modal dialog presents perfectly, I can type into it - it AJAX's in the results - but the dropdown select displays behind the

[jquery-ui] .slider(disable) does not block keyboard input?

2008-10-16 Thread pd
It appears that .slider(disable) does not block keyboard input, only mouse input. Can anyone confirm this? Is this deliberate, a bug or an oversight? Thanks pd --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[jquery-ui] Can a div not be draggable *and* droppable?

2008-10-16 Thread MorningZ
My example code: http://paste.pocoo.org/show/88256/ I am trying to make it so the user can drag the div surrounding the textbox and drop it onto an another div (that's set for droppable) and then, after i can even get the alert to fire, copy the contents of the textbox but i cannot even get

[jquery-ui] Classes added to datepicker are lost on month change, etc.

2008-10-16 Thread Jimbo M
I'm creating an inline datepicker and adding a class to specific cells based on the date as such: var cal = $(#calendar).datepicker(); cal.datepicker(change, { onSelect: function(dt) { $ (#results).text($.datepicker.formatDate('mm/dd/yy', new Date(dt))) } }); var dates = [1, 5, 12, 21, 27, 30];

[jquery-ui] Re: Can a div not be draggable *and* droppable?

2008-10-16 Thread MorningZ
Figured it out... i had to put the accept option (so much for being an option, heh) $dvs.droppable({ accept: .dc, drop: function(e, ui) { var $drag = $(ui.draggable); var $drop = $(this); $drop.find(input).val($drag.find(input).val());

[jquery-ui] Re: Autocomplete and Modal Dialog - Select Box hidden

2008-10-16 Thread patrick davey
Damn! ;) I was just stripping things out of the page so that I could demo the issue - and it disappeared, must be something to do with my CSS I suspect. Hmmm.. I retract my earlier question! :) On Oct 17, 2:30 pm, pd [EMAIL PROTECTED] wrote: Please provide a demo of the issue. On Oct 17,

[jquery-ui] Re: Autocomplete and Modal Dialog - Select Box hidden

2008-10-16 Thread patrick davey
A distinct case of Friday AfternoonItis.. had cunningly forgotten to upload my autocomplete.css .. all working fine now and New Zealand being ahead of the curve GMT wise .. I'm off for a Friday afternoon beer! On Oct 17, 4:29 pm, patrick davey [EMAIL PROTECTED] wrote: Damn! ;) I was just

[jquery-ui] Re: sortable: strange dragging behavior in IE ( demo included )

2008-10-16 Thread tallvanilla
Thanks Olivier. Hey developers... any news on fixing this bug? Again, here's a live demo of the problem as it shows up in IE: http://74.205.76.81/sorttest/index4.php JR On Oct 16, 3:14 am, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: sure here it is. On my way I discovered another