#3159 closed feature (fixed)
datepicker function to do refresh/redraw
Reported by: | anonymous | Owned by: | kbwood |
---|---|---|---|
Priority: | trivial | Milestone: | 1.6rc1 |
Component: | ui.datepicker | Version: | 1.5.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
would be nice if the datepicke had a datepicker("refresh"); function to force the datepicker to redraw itself.
Change History (7)
comment:1 Changed 15 years ago by
Owner: | changed from grabanski to kbwood |
---|---|
Status: | new → assigned |
comment:2 Changed 15 years ago by
I am using datepicker showing special dates. Great that the Month/Year Notify has been fixed so I can load the special dates data (ajax) before displaying the calendar. This refresh request also has to do with special dates. The underlying data structure holding the special dates for the currently displayed month may also change and I would like to instruct the calendar to redraw all month days. I hope that clarifies my request.
Needless to say I think this plugin rocks. Very neat code, well set up!
comment:3 Changed 15 years ago by
Can you add this to the $.extend(Datepicker.prototype, {... section and test it out?
/* Redraw the date picker attached to an input field or division.
@param target element - the target input field or division or span */
_refreshDatepicker: function(target) {
var inst = $.data(target, PROP_NAME); if (inst) {
this._updateDatepicker(inst);
}
},
comment:4 Changed 14 years ago by
Added the code and tested it in my application with an inline datepicker. It works like a charm (in IE6&7, Safari 3.1 (windows) and Firefox 2). I tested with only one datepicker on the page, so I don't know how it behaves with multiple datepickers shown at the same time. Thanks, this code helps me a lot!
comment:5 Changed 14 years ago by
Milestone: | → TDB |
---|
comment:6 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Applied to main code.
comment:7 Changed 14 years ago by
Milestone: | TBD → 1.6rc1 |
---|
This shouldn't be necessary as the datepicker should always redraw itself when anything changes. In what circumstances are you seeing a need for this?