[jquery-ui] [ui accordion] alwaysOpen option for nested lists

2009-01-04 Thread Nestor Urquiza
Just changing the subject in case my post got ignored by some filters. Anyone out there with experience in nesting accordions? -- Forwarded message -- From: nestor.urquiza nestor.urqu...@gmail.com Date: Sat, Jan 3, 2009 at 4:47 PM Subject: [ui accordion] alwaysOpen option for

[jquery-ui] Re: jQuery datepicker -- allow non-date text input?

2009-01-04 Thread Ca-Phun Ung
Try the constrainInput option, it's set to true by default - change it to false like this: $('#myInput).datepicker({constrainInput: false}); On Sun, Jan 4, 2009 at 5:47 AM, drumbox19 drumbox19-al...@yahoo.com wrote: Hello, Is there any way for the datepicker to allow non-date text input? I

[jquery-ui] Re: [ui accordion] alwaysOpen option for nested lists

2009-01-04 Thread Scott González
The alwaysOpen option does not affect the initial status of the accordion; it only determines what should happen when a user tries to toggle an active panel. The active option lets you set which panel is active, so setting this to false on init will cause all panels to be closed. On Jan 4,

[jquery-ui] Re: [ui accordion] alwaysOpen option for nested lists

2009-01-04 Thread Nestor Urquiza
Thank you very much! I should have read http://docs.jquery.com/UI/Accordion/accordion#options before posting. On Sun, Jan 4, 2009 at 11:20 AM, Scott González scott.gonza...@gmail.comwrote: The alwaysOpen option does not affect the initial status of the accordion; it only determines what

[jquery-ui] Re: How to set Dialog height to auto?

2009-01-04 Thread Scott González
Nothing will automatically recenter - this is what we've been saying all along. If you want to manually recenter the dialog, it's only one line of code: $(el).dialog('option', 'position', 'center')); Or to re-position it based on the positioning it had previously: $(el).dialog('option',

[jquery-ui] Datepicker style not being applied

2009-01-04 Thread Zack
Hi, I have just implemented a datepicker in one of my forms, and have included the CSS file that was generated by themeroller, but the style is not being applied to my datepicker. Having checked the CSS that is output by the themeroller it doesn't seem to have any of the .ui- datepicker styles

[jquery-ui] Trouble with resizable handles with div set to overflow: auto;

2009-01-04 Thread Jay D
Hi all, I have a fixed height div with overflow set to auto that I want my users to be able to resize. HTML: div id=pieces lots of stuff in here /div CSS: #pieces { height: 300px; overflow: auto } And finally JS: $(#pieces).resizable( { grid: [0,23], minHeight: 300, handles: 's' } );