[jquery-ui] YUI Compressor and configured downloads for 1.5.3

2008-12-04 Thread orip
When I try to create a configured download including the UI core I get an invalid ZIP file (with some html in the beginning), or just a YUI Compressor error if I try the UI core alone. I think it's because of special characters in the contributors' names. When I run YUI Compressor on my machine

[jquery-ui] sortable positioning incorrect, in a left float parent, (FF3 on OSX), UI 1.6x

2008-12-04 Thread yoon
First of all, thanks for a wonderful sortable library. I'm converting a project from Prototype/Scriptaculous, and am finding the implementation a lot cleaner, and the performance much better. I have a sortable div with css: float:left; that is floating about 100px from the left (next to another

[jquery-ui] Can't get UI tabs to work

2008-12-04 Thread Dan
I want to use jQuery's ui tabs in my webpage. Unfortunately, I can't even get the example to work. I don't know what/where I'm going wrong. Does anyone have a complete, easy to understand example they could share? If not below is the code I have, if some could tell me what needs to be fixed it

[jquery-ui] Problem with draggable element TR in IE6

2008-12-04 Thread [EMAIL PROTECTED]
Hi everybody, I have a problem whith JQuery UI 1.5.2 and the draggable element TR of a table. it definetly crash my browser IE6 although in firework it work well. I have problem only with the element TR, with the others like INPUT, TD ... I do not have this problem. Here is my code

[jquery-ui] Re: Update local data

2008-12-04 Thread ZevSpitz
Quote: I'm using an input box with an autocompleter with local data, like this: var persons = [{name : John}, {name : Carl}, {name : Susan}]; $('#inputname').autocomplete({ data: persons, (...) }); And was trying to see if i could update the local data by adding another object to

[jquery-ui] Re: Update local data

2008-12-04 Thread ZevSpitz
Quote: I'm using an input box with an autocompleter with local data, like this: var persons = [{name : John}, {name : Carl}, {name : Susan}]; $('#inputname').autocomplete({ data: persons, (...) }); And was trying to see if i could update the local data by adding another object to

[jquery-ui] Re: Problem with draggable element TR in IE6

2008-12-04 Thread Richard D. Worth
TRs are currently not supported as draggable elements. They're a bit tricky, since they have to be inside a table, and a draggable helper exists on its own elsewhere in the DOM. See [Drag/Droppables] Support for TableRows/TableColumns/TableCells/TableBodies http://ui.jquery.com/bugs/ticket/2405

[jquery-ui] Re: YUI Compressor and configured downloads for 1.5.3

2008-12-04 Thread .celleken
Hi, I just downloaded effects core + slide (1.5.3, JSMin) and I have the same problem. The JavaScript doc on top is missing and the file starts with: (empty line) ;(function($) ... Greetz, Bart Deslagmulder On Dec 3, 1:34 pm, orip [EMAIL PROTECTED] wrote: When I try to create a

[jquery-ui] Re: Can't get UI tabs to work

2008-12-04 Thread Matt
I don't see a div around your ul with the id: example unless you just didn't paste it in. That would certainly be a problem. On Dec 3, 8:42 am, Dan [EMAIL PROTECTED] wrote: I want to use jQuery's ui tabs in my webpage. Unfortunately, I can't even get the example to work. I don't know

[jquery-ui] Re: resizable callback handles

2008-12-04 Thread aeternitas103
perfect, thanks a lot! On 4 Dez., 10:52, Richard D. Worth [EMAIL PROTECTED] wrote: On Wed, Dec 3, 2008 at 5:44 AM, aeternitas103 [EMAIL PROTECTED] wrote: hi, im new to this list. Welcome :) when i use the ui.Resize Plugin i need to know which handle is activated by the User. stop:

[jquery-ui] Re: Highlight link [accordion]

2008-12-04 Thread Jörn Zaefferer
Don't know where you got that from, but thats not true. Just look at the HTML markup via Firebug on any demo: http://ui.jquery.com/repository/tags/latest/demos/functional/#ui.accordion - a class=ui-accordion-link ui-accordion-header selected href=# tabindex=0 Jörn On Thu, Dec 4, 2008 at 4:43 PM,

[jquery-ui] Re: jquery ui tabs with cookie sharing problem

2008-12-04 Thread Klaus Hartl
Since you're initializing tabs twice the cookie option isn't used at all with your code. To make the cookie being shared between pages you may have to set the path for the cookie as well: $(.menuTabs).tabs({ cookie: { expires: 365, path: '/' }, fx: { opacity: 'toggle' } }); --Klaus On

[jquery-ui] Re: jquery ui tabs with cookie sharing problem

2008-12-04 Thread chay
thanks Klaus for your time, that worked Chay. On Dec 5, 7:35 am, Klaus Hartl [EMAIL PROTECTED] wrote: Since you're initializing tabs twice the cookie option isn't used at all with your code. To make the cookie being shared between pages you may have to set the path for the cookie as well:

[jquery-ui] Re: Will multiple droppable chainability be possible in future?

2008-12-04 Thread Daazku
Sorry, sometime my poor english vocabulary is an handicap. What i want to do is to add a droppable option on a div. So he can accept some draggables. After the assignation if i want to add another droppable option for another draggable with a different effect, i'm in trouble. That why i asked

[jquery-ui] Re: Problem with draggable element TR in IE6

2008-12-04 Thread Nate Laws
Try upgrading to the latest UI 1.6 release candidate. Although they aren't officially supported I've gotten draggable TRs to work in IE6 with using a helper like you do. Also, ghosting isn't a draggable option, I'm not sure where you are getting that from. On Wed, Dec 3, 2008 at 11:51 AM,