You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful if element could be passed as a relative parameter. For
example it would allow datepicker to be initialized before relative element
have been added to dom.
Support for this could be archived by following code changes:
Change line 533 from:
this._id_datepicker = 'datepicker-'+this._relative;
To:
this._id_datepicker = 'datepicker-' + $(this._relative).id;
line 833 from:
this._relative,
to:
this._id_datepicker,
and line 859 from:
).replace(_self._relative+'-','').replace(/-/g, _self._df.separator);
to:
).replace(_self._id_datepicker+'-','').replace(/-/g, _self._df.separator);
Original issue reported on code.google.com by [email protected] on 20 May 2011 at 7:15
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 20 May 2011 at 7:15The text was updated successfully, but these errors were encountered: