[jquery-ui] binding the dialog resizeStop event /after/ dialog creation

2009-09-23 Thread Yermo
Using jQueryUI 1.7.2 index.html, the Welcome to jQuery page, and FireFox 3.0.13 under Linux , refer to the link that opens the dialog // Dialog Link $('#dialog_link').click(function(){ $('#dial

[jquery-ui] jQuery UI 1.7.2 selectable lasso css

2009-09-23 Thread VersionFourX
Hello all, Is it possible to change the css for the lasso of a selectable in jQuery UI 1.7.2? Example: change the lasso to be of a tan color? Thank you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery UI" g

[jquery-ui] drag and drop on ie and 1.7.2

2009-09-23 Thread tombu
Hi, I am having a problem with drag and drop on all versions of ie. Whenever anything is dropped, ie get an error that says 'data (...).options is null or not an object'. The drop happens successfully, but there is a ghost of the item being dragged at the last position. Anybody run into anythi

[jquery-ui] resizable with parent containment not working vertically

2009-09-23 Thread wmcdona89
Resizable containment doesn't seem to be working for me. In my example below, a draggable is cloned after being dragged to a droppable. The new div is set as resizable with a containment of 'parent'. The parent is the div with id=2. The new div can be resized horizontally and this resizing is bein

[jquery-ui] Re: jQuery UI Progressbar Plugin Issue

2009-09-23 Thread Otavio Ferreira
That's true, good point. Maybe I should get the JS code to monitor partial outputs. Is that possible at all? On Sep 23, 12:09 pm, "Richard D. Worth" wrote: > All your callbacks are being called at the end, in quick succession, after > the whole response comes in. You can see this by setting you

[jquery-ui] Re: jQuery UI Progressbar Plugin Issue

2009-09-23 Thread Richard D. Worth
All your callbacks are being called at the end, in quick succession, after the whole response comes in. You can see this by setting your breakpoint on line 13 and then looking at the Net tab. Your breakpoint is stretching those few milliseconds into lots of seconds. - Richard On Wed, Sep 23, 2009

[jquery-ui] Re: jQuery UI Progressbar Plugin Issue

2009-09-23 Thread Otavio Ferreira
Thank you for replying. I haven't managed to get it working though. Would you please have a look at this live demo? http://www.fullsemanticweb.com/test/pbar/ Now you have access to the HTML and JS source-code via Firebug. If you just click on "Load", the progressbar will fill out completely aft

[jquery-ui] jQuery Accordion Navigation

2009-09-23 Thread JJB
I have 15 panes, the content (of some the panes) is longer then other. So if I expend the first pane then expend the 10th pane, all the pane moved up and left looking at blank part of the page. Is the navigation option of the Accordion use to anchor the pane? Thanks, Jamie --~--~-~--~--

[jquery-ui] Re: Got some issues with the UI plugin Spinner

2009-09-23 Thread Ca-Phun Ung
Hi, Glad you resolved the problem without needing any help! Thanks for the suggestion regarding documentation. This will certainly be looked into once we get closer to releasing the Spinner. At this point it is still in development so the documentation is not up to date or complete. Thanks. --~

[jquery-ui] Re: UI/API/1.7.2/Dialog and current position

2009-09-23 Thread Scott González
The trunk version of dialog updates the position when the dialog is moved, so you can ask the plugin for the position option and it will be correct. If you need to stay on a stable version, you can see the full logic for how to get the correct position on dragStop by looking at how we calculate th

[jquery-ui] Re: Got some issues with the UI plugin Spinner

2009-09-23 Thread alkariane
Just a thought. Maybe it would be great if the documentation about ui.spinner on the official website had a direct link to download the plugin. It's not easy to find it when you're not used to the website ^^ On Sep 23, 3:31 pm, alkariane wrote: > The hint was good. > In fact, i finally found a

[jquery-ui] Re: jQuery UI widget factory & jQuery live

2009-09-23 Thread Scott González
You're using .live() wrong, this actually has nothing to do with the widget factory. You're creating a separate live event handler for every single instance of your plugin, which completely defeats the purpose of using event delegation. On Sep 22, 9:50 am, Neil Craig wrote: > Take the following

[jquery-ui] Re: Got some issues with the UI plugin Spinner

2009-09-23 Thread alkariane
The hint was good. In fact, i finally found a recent version of the file ui.spinner.js (august 2009). It works perfectly now ^^ Tnx a lot for the help ! On Sep 23, 12:17 pm, alkariane wrote: > Hi. > > Tnx for your reply. > So, it should work ? > It's very weird. > > This is the only change i m

[jquery-ui] Re: Find and replace if found more then once

2009-09-23 Thread Richard D. Worth
please ask on the main jQuery list: http://groups.google.com/group/jquery-en - Richard On Tue, Sep 22, 2009 at 5:15 AM, Martina wrote: > > Is this possible? > I want to look in a div element with a certain ID and if the word > Subtotal is found more then

[jquery-ui] Re: multiple select and drag/drop

2009-09-23 Thread Richard D. Worth
Like so: http://jsbin.com/egire - Richard On Tue, Sep 22, 2009 at 5:42 PM, Kevin Bond wrote: > Hi guys, > > I am trying to allow for multiple items to be selected and dragged/dropped > - anyone know of how I can do this? > > Thanks, > > -- > Kevin > > > > > > --~--~

[jquery-ui] Re: Draggable: Custom helper position

2009-09-23 Thread Richard D. Worth
There is a built in option, called cursorAt: http://docs.jquery.com/UI/Draggable#option-cursorAt - Richard On Mon, Sep 21, 2009 at 11:11 AM, David Roe wrote: > > I'm using the draggable plugin and passing a function for the helper > option. A

[jquery-ui] Re: Scrollable Image Gallery - Looks Like a Grid Instead of a Carousel??

2009-09-23 Thread Richard D. Worth
You may want to ask on the main jQuery list: http://groups.google.com/group/jquery-en The list you've posted to is for asking questions about jQuery UI plugins, and there isn't currently one of those that fits what you're looking for. Thanks. - Richard O

[jquery-ui] Re: Using Slider vertically

2009-09-23 Thread Richard D. Worth
This is by design. If you want to invert it, subtract the current value from the max value. - Richard On Tue, Sep 22, 2009 at 10:21 AM, Kyle wrote: > > I followed this tut: > > http://net.tutsplus.com/tutorials/javascript-ajax/making-a-content-slider-with-jquery-ui/ > > but I cant make the slide

[jquery-ui] Re: UI/API/1.7.2/Dialog and current position

2009-09-23 Thread Nate Laws
Hi Steve, I would recommend using the dialog dragStop event http://jqueryui.com/demos/dialog/#event-dragStop Then grab the values in ui.offset or ui.position and store it with the jquery cookie plugin. On Wed, Sep 23, 2009 at 3:04 AM, Steve wrote: > > I've got a dialog box displayed on a page

[jquery-ui] Draggable isn't switched on in cloned div?

2009-09-23 Thread Olav Stetter
I already posted this in the non-UI general discussion, just realized that this might actually be the right place. Regards, Olav --- Hi everyone, spent the whole day trying to locate the problem here, so I would really appreciate any ideas you might have on this one: We have several "modules"

[jquery-ui] Re: Got some issues with the UI plugin Spinner

2009-09-23 Thread alkariane
Hi. Tnx for your reply. So, it should work ? It's very weird. This is the only change i made : instead of http://jquery-ui.googlecode.com/ svn/tags/1.6rc2/ui/ui.core.js"> In fact, our version of jquery core (1.7.2) was downloaded directly on the jquery ui website with the redmond pack as y

[jquery-ui] UI/API/1.7.2/Dialog and current position

2009-09-23 Thread Steve
I've got a dialog box displayed on a page which is moveable. I want to be able to get the position of the dialog after it's been moved and store it in a cookie so the next time the user loads the page the positions of the dialogs are retained. Can you let me know how to do this? Thanks Steve

[jquery-ui] accordion and IE6, 7

2009-09-23 Thread Steve
I'm using the accordion function to display a dynamic menu on the left of my page. Using firefox this works perfectly and scrolls the menus as expected. Using IE the output is not corrected. The menu options are not correctly folded, etc. I'm using the following code;

[jquery-ui] multiple select and drag/drop

2009-09-23 Thread Kevin Bond
Hi guys, I am trying to allow for multiple items to be selected and dragged/dropped - anyone know of how I can do this? Thanks, -- Kevin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post t

[jquery-ui] Sortable helper position in firefox bugged

2009-09-23 Thread Otávio Augusto Soares
Hi all. I'm using jquery ui sortable and i'm enjoying it so much. However, im facing a trouble ONLY ON FIREFOX. When i scroll down the page and try to move any box, the helper is shown in wrong top position. It seems that the plugin did not calculate de scrollTop value, because the difference i

[jquery-ui] multiple select and drag/drop

2009-09-23 Thread Kevin
Hi guys, I am trying to allow for multiple items to be selected and dragged/ dropped - anyone know of how I can do this? Thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this gr