[jquery-ui] Re: onChangeMonthYear and inline datepicker

2009-08-19 Thread Cyril Lopez
2009/8/19 Richard D. Worth > > On Wed, Aug 19, 2009 at 5:29 AM, Cyril wrote: > >> 2009/8/18 Jörn Zaefferer >> >>> >>> As a workaround, you could set that option after init: >>> >>> $('#options #date').datepicker({ >>> minDate: 0, >>> maxDate: "+2Y", >>> regional: $('html').att

[jquery-ui] Re: onChangeMonthYear and inline datepicker

2009-08-19 Thread Matthias
setting the option after init solved the problem. thank you On 18 Aug., 21:46, Jörn Zaefferer wrote: > As a workaround, you could set that option after init: > > $('#options #date').datepicker({ >        minDate: 0, >        maxDate: "+2Y", >        regional: $('html').attr('lang'), >        c

[jquery-ui] Re: onChangeMonthYear and inline datepicker

2009-08-19 Thread Richard D. Worth
On Wed, Aug 19, 2009 at 5:29 AM, Cyril wrote: > 2009/8/18 Jörn Zaefferer > >> >> As a workaround, you could set that option after init: >> >> $('#options #date').datepicker({ >> minDate: 0, >> maxDate: "+2Y", >> regional: $('html').attr('lang'), >> changeMonth: true, >>

[jquery-ui] Re: onChangeMonthYear and inline datepicker

2009-08-19 Thread Cyril
2009/8/18 Jörn Zaefferer > > As a workaround, you could set that option after init: > > $('#options #date').datepicker({ > minDate: 0, > maxDate: "+2Y", > regional: $('html').attr('lang'), > changeMonth: true, > changeYear: true, > showOtherMonths: true, >

[jquery-ui] Re: onChangeMonthYear and inline datepicker

2009-08-18 Thread Jörn Zaefferer
As a workaround, you could set that option after init: $('#options #date').datepicker({ minDate: 0, maxDate: "+2Y", regional: $('html').attr('lang'), changeMonth: true, changeYear: true, showOtherMonths: true, hideIfNoPrevNext: true, dateFor