[jquery-ui] Re: programmatically set buttons

2008-11-20 Thread oscarml
Nobody can help? On 17 nov, 18:09, oscarml [EMAIL PROTECTED] wrote: Hi, I need to set programmatically the buttons in a confirm buttoned dialog, but I am having several issues: This is the code I'm using: The function that creates and opens the dialog:         function

[jquery-ui] Re: List Sortable AND draggable? Re: [jquery-ui] sortable list from spry xml data, what next?

2008-11-20 Thread Gerrit
Hello Paul, I did a quick test and it does not seem to work for me. I also looked at this example: http://ui.jquery.com/repository/real-world/layout/ where one sortable list is used as a trashcan, it simply removes all items dropped on that list. I will do some more testing this

[jquery-ui] Re: draggable object :: containment: 'parent' breaks it (except firefox)

2008-11-20 Thread dirk w
any ideas? On 19 Nov., 16:44, dirk w [EMAIL PROTECTED] wrote: hello community, i am using a parent and child div. the child div is supposed to be dragged from left to right within the parent div. everything works fine, but as soon as i specify: containment: parent it just doesn't work

[jquery-ui] how to get onchange select id

2008-11-20 Thread mohan
Hi, In my page i have 4 dropdowns when on change event occurs, i want to know from which select box it is fired. How to know that? Help me. Thanks, Mohan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups jQuery UI

[jquery-ui] Re: sortable - tolerence?

2008-11-20 Thread .elli.
Hey malf, I've got the same problem. Have you or anyone found an answer so far? thx. malf wrote: Hi, Just trying to use sortable on some fairly basic div's and getting odd behaviour as I attempt to reposition them. I find that when dragging an object, and the mouse cursor is over the

[jquery-ui] DOM Manipulation

2008-11-20 Thread dwigg
Hello, I am working on elements of my web application that will be draggable and droppable. I have got to a point where I need some help to continue with my development, see code below: //Javascript document $(document).ready(function(){ $(li).draggable({ containment:

[jquery-ui] Re: Jquery UI dialog close

2008-11-20 Thread Scott González
I'm pretty sure jQuery doesn't support cross-window operations. You need to create a method on the parent window that will close the dialog and then call that method from the child window. On Nov 18, 1:43 pm, manilodisan [EMAIL PROTECTED] wrote: I'm loading a dialog and inside it an iframe to

[jquery-ui] Re: Jquery UI dialog close

2008-11-20 Thread markus.staab
you have to use window.parent.$('#dialog') instead of $(window.parent.document).find('#dialog'); but you have to make sure, that the jquery.js is also included in the parent window. On 20 Nov., 14:39, Scott González [EMAIL PROTECTED] wrote: I'm pretty sure jQuery doesn't support

[jquery-ui] Re: Draggables to sortable list, with DOM changes to the dragged element..?

2008-11-20 Thread Steen Nielsen
Sorry for the late reply. Paul (or somebody else), I have now tried to affect the ui.item, as you suggest in the following ways: In Draggable: stop: function(e,ui){ ui.item = $('liStop test 1 - from Draggable/li'); } stop: function(e,ui){ ui.item = 'liStop test 1 - from

[jquery-ui] Re: Draggables to sortable list, with DOM changes to the dragged element..?

2008-11-20 Thread Steen Nielsen
Alright, now I figured it out.. I had earlier tried using ui.item = $ ('divHello world/div'), but that didn't work, because what i needed to do was: ui.item.html('divHello world/div'); or ui.item.replace('lidivHello world/div/li'); Thank you for pushing me in the right direction, but I still

[jquery-ui] Re: Draggables to sortable list, with DOM changes to the dragged element..?

2008-11-20 Thread CodeOfficer
Steen, I've done something similar with my draggable to sortable lists ... maybe this code might help. Sounds like you fixed it already though ... http://pastie.textmate.org/private/hxnola6wogh9iujsqiq9ya --~--~-~--~~~---~--~~ You received this message because

[jquery-ui] Re: Multiple Resizable Text Area

2008-11-20 Thread vreboton
Anybody encounter this problem? On Nov 17, 11:59 am, vreboton [EMAIL PROTECTED] wrote: How do I accomplish this task?  MultipleResizabletext area not all text area. I have tried using; jQuery(#TextArea1).resizable(); jQuery(#TextArea2).resizable(); But only text area 2 getsresizable.