[jquery-ui] Re: Move only frame instead of dialog window.. ?

2009-10-28 Thread jayarjo
I even think that this case probably should be filed as FF bug. On Oct 26, 7:28 pm, Tobias Herrmann wrote: > Hi, > > I can confirm that resizing or moving a ui-dialog with a lot of content > leads to problems. I my case I have an iframe inside my dialog > containing some real nice table layout an

[jquery-ui] Re: Help with hide / show specific rows in independent tables

2009-10-28 Thread theo74
i think I solved my own problem... it seems to work? Please let me know if anyone thinks this is not a good or stable way to do this... thanks JQuery: $(document).ready(function() { //expand the next table after the current div.tblContols $('span.tblControls > a.expand').click(f

[jquery-ui] How to correctly style a just added tab?

2009-10-28 Thread Palamedes
What is the correct way to apply a style to the tab I just added? I have all of my tabs using the tabTemplate of # {label} and that works nicely.. CSS Styles those to float left, but on occasion one of the tabs will need to float right.. Given this; $('.selector').tabs('add', '#1234', 'New Tab

[jquery-ui] Re: Can't download theme roller css

2009-10-28 Thread pstephan1187
I am having the same issue in Firefox 3.5 -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For mo

[jquery-ui] Re: Can't download theme roller css

2009-10-28 Thread CMarcera
I'm having the same issue. I've tried in Safari 4 & Firefox 3 under OS X and Firefox 3 & IE8 under Windows. I'm guessing it's an issue with ThemeRoller. I either get the default css theme or no theme folder at all. On Oct 28, 10:05 am, Aikeru wrote: > I've tried with IE 8 and the latest Chrome an

[jquery-ui] Re: Theme roller download

2009-10-28 Thread Anthony
Yes this use to work a few days ago, I am working on a calendaring application that uses jquery themes heavily. One of our main focuses is that our users can customize the look and feel of their calendar with ease using the theme roller. It is absolutely essential for custom themes to be created

[jquery-ui] Datepicker problem

2009-10-28 Thread Becky
I am having a problem implementing the datepicker on my website. When the input field is clicked, the calendar appears as it should. But if the input field is clicked again, a drop-down menu of dates appears over the calendar. The dates are the same every time, but otherwise they have no signifi

[jquery-ui] Help with hide / show specific rows in independent tables

2009-10-28 Thread theo74
Hello, i am new(ish) to using jquery... I am trying to hide / show specific rows within independent sets of tables. I can get it to hide and show the tables seperately and i can get rows in the first table to hide correctly, however when i hide the rows I want it hides the rest of the tables on the

[jquery-ui] DIALOG on IE8

2009-10-28 Thread G7
I've got a dialog with button that works in Firefox 1 and 3.5, Chrome, and Safari. Unfortunately, I can't get it working in IE8 or IE7. The older IE browsers seem to be entirely broken: the div that represents the dialog box is simply written to the screen in the appropriate place on the page, and

[jquery-ui] Accordion widget: navigation option problem

2009-10-28 Thread Jeremy B.
Hi, I try to use jQuery UI accordion with the navigation option but I can't make it work and I don't found much documentation... Source jQuery UI documentation: "If set, looks for the anchor that matches location.href and activates it. Great for href-based state- saving. Use navigationFilter to i

[jquery-ui] Re: Can't download theme roller css

2009-10-28 Thread Anthony
I've also been trying to download a custom theme all day today... I was able to download one last week, but nothing has worked today On Oct 28, 10:05 am, Aikeru wrote: > I've tried with IE 8 and the latest Chrome and can't get any custom > themes to download. I understand many others have the sam

[jquery-ui] Re: jquery ui show/hide toggle effect breaking form

2009-10-28 Thread Mean Mike
I think you might be missing a parameter just looking at how I had used blind try this $("#effect").toggle("blind", {},500); Mean Mike On Oct 28, 4:52 pm, strawflower wrote: > Update: still broke, but I discovered that removing effect args from > the call to 'toggle' - ie, using toggle alon

[jquery-ui] Re: jquery ui show/hide toggle effect breaking form

2009-10-28 Thread strawflower
Update: still broke, but I discovered that removing effect args from the call to 'toggle' - ie, using toggle alone - fixes the form. That is, replacing: $("#effect").toggle('blind',500) with simply $("#effect").toggle(); Thing is, I want the JQUI 'blind' effect. Any suggestions for a solution

[jquery-ui] Re: Sortable - Nested lists problem

2009-10-28 Thread Mean Mike
ohh and I used this too ! http://www.b-hind.eu/jquery/ hope this helps you On Oct 28, 2:01 pm, Mean Mike wrote: > I'm having a hard time following the problem but this is what I used > for my treehttp://www.botsko.net/blog/2009/01/jquery_serialize_list_plugin/ > > I had to modify it a bit for m

Re: [jquery-ui] Re: Sortable bug in IE? Any solution

2009-10-28 Thread Cyril Lopez
2009/10/20 Tobias Herrmann > > Hi, > > in your example a sub element is also part of a parent. So in IE sorting > a sub element also causes the parent to be sorted. You can avoid this > problem by defining a handle at least on the parent list. You may put > text and link of the parent li into a s

[jquery-ui] jquery ui show/hide toggle effect breaking form

2009-10-28 Thread strawflower
A jquery UI effect to toggle show/hide a column of checkbox input fields is breaking my form: the checkbox args aren't being sent when the form is in place. Removing the id for the 'effect' div fixes the form - and breaks the show/hide effect, of course. Can anyone offer any advice? Here's the s

[jquery-ui] Can't download theme roller css

2009-10-28 Thread Aikeru
I've tried with IE 8 and the latest Chrome and can't get any custom themes to download. I understand many others have the same issue! Please fix this bug asap!! :( -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email t

[jquery-ui] Sortable and Selectable

2009-10-28 Thread Matthew
Hi All, Have tried to find an example of this, and played around a bit but got no where. I want to have 2 sortable lists (just like in the demo http://jqueryui.com/demos/sortable/#connect-lists) However I also want to be able to select multiple items and then drag them all from one list to another

[jquery-ui] Dialogs and ajax reloading results in duplicate dialogs

2009-10-28 Thread Pete
Hello I encountered a bit of weird behaviour with the ui.dialog element. I tried to report it to trac but the page gave me an internal error, so this was the next best place that I found. Here is the scenario: I have a dialog that I want to init only when the dialog is needed to be opened. So I i

[jquery-ui] Re: Sortable - Nested lists problem

2009-10-28 Thread Mean Mike
I'm having a hard time following the problem but this is what I used for my tree http://www.botsko.net/blog/2009/01/jquery_serialize_list_plugin/ I had to modify it a bit for my needs but I it may help you Mike On Oct 28, 1:49 pm, Cyril Lopez wrote: > Hi, > I'm using sortable() function in ord

[jquery-ui] Sortable - Nested lists problem

2009-10-28 Thread Cyril Lopez
Hi, I'm using sortable() function in order to arrange nested lists. My html : Item 1 Item 2 Item 3 Item 4 My js : $('.parents').sortable( { items: '>li', handle: 'span.anchor', connectWith: '.parents', dropOnEmpty:true, helper:'c

[jquery-ui] Re: (accordion) display:table-cell header issues

2009-10-28 Thread harking
Original issue exists in Firefox. Does not happen when using IE8, Safari or Chrome. Maybe i need to file an issue there instead. On Oct 28, 11:12 am, harking wrote: > I'm having issues when using the accordion with display:table-cell and > vertical-align:middle for my headers. > > The header wi

[jquery-ui] (accordion) display:table-cell header issues

2009-10-28 Thread harking
I'm having issues when using the accordion with display:table-cell and vertical-align:middle for my headers. The header will seem to float to the left and the child content will float up to the right of it. Switching back to display:block fixes everything, but in that case I can't get multi line

[jquery-ui] Re: Newbie question about dialog windows

2009-10-28 Thread Alex
As in any other programming language, you can do a function to reuse some behaviour. You can put these in the page or in a js: function createDialog(dialogID){ $('#'+dialogID).dialog({ autoOpen: false, width: 600, buttons: { "Ok": function() { $(this).dialog("close");

[jquery-ui] Re: Theme roller download

2009-10-28 Thread phpfaber
you can use any premade theme's URL and generate package and it will work.. and just try to change something in that url (say font from 1.1 to 1.0) and roller will not generate css for you... just a bit change broke that.. :( We are waiting on updates Ui team! but there is no time to wait.. :( --

[jquery-ui] Re: Theme roller download

2009-10-28 Thread phpfaber
the same service is buggy now I guess... --~--~-~--~~~---~--~~ 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, send ema

[jquery-ui] Re: Theme roller download

2009-10-28 Thread Alex
Same problem here. The custom theme download is not working properly when it was some days ago. Any news about it in some other forum or thread? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To p

[jquery-ui] Re: newbie question

2009-10-28 Thread Richard D. Worth
If you put your script block in the HEAD, that's exactly right, it'll need to be inside a document.ready callback function. If you leave it in the body, however, the script block simply needs to be moved *after* the input, so that when the script is executed, the element exists in the DOM to be fou

[jquery-ui] Re: does anyone have a working sample for nested tabs using jquery?

2009-10-28 Thread Nate Laws
You can still use the themeroller themes, take a look at the tabs themeing section and just manually add the same classes. If you did go with the tabs widget you would use the tabs select event and wouldn't have to worry about click binding or changing styles on selected criteria, but you would st