[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: CSS: #pieces { height: 300px; overflow: auto; } #piecesResizer { height: 10px; background: black; } JS: $("#pieces").resizable( { grid: [0,23], minHeight: 300, handles: { 's':"#piec

[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 in

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

2009-01-04 Thread drumbox19
Thanks Ca-PhunI actually did try that, but it still doesn't allow alpha characters to be entered... On Jan 4, 7:33 am, "Ca-Phun Ung" wrote: > Try the constrainInput option, it's set to true by default - change it to > false like this: > > $('#myInput").datepicker({constrainInput: false}); >

[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 wrote: > > The alwaysOpen option does not affect the initial status of the > accordion; it only determines what should happen when a user t

[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, 11:13

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

2009-01-04 Thread Nestor Urquiza
Reported as http://ui.jquery.com/bugs/ticket/3759 On Sun, Jan 4, 2009 at 11:02 AM, Nestor Urquiza wrote: > I have patched ui.accordion.js to allow nested accordions to work correctly > when alwaysOpen option is set to false. Below are the changes: > diff ui.accordion.js.original ui.accordion.js >

[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', 'positio

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

2009-01-04 Thread Nestor Urquiza
I have patched ui.accordion.js to allow nested accordions to work correctly when alwaysOpen option is set to false. Below are the changes: diff ui.accordion.js.original ui.accordion.js 32,33c32,34 < options.headers = this.element.find(options.header); < options.active = findActive(o

[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 wrote: > > Hello, > > Is there any way for the datepicker to allow non-date text input? I > have a situation wh

[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 Date: Sat, Jan 3, 2009 at 4:47 PM Subject: [ui accordion] alwaysOpen option for nested lists To: jQuery UI