Gets array of objects which used by calendar to modify default rendering of days. Each item may contain following optional members: day: day in month in range of 1..31; month: month in year in range of 1..12; year: year in range of 2..9999; dow: day of the week in range of 0..6; disabled: value of true makes day disabled; css: name of custom css class; text: html used to render day. If it contains {0}, then it is replaced by the day of the month. Custom days in calendar
Gets array of objects which represent days in calendar and week numbers. Array which contains CalendarDay objects. If week numbers are enabled, then its length is 47, otherwise, its length is 42. Note: that object should not be modified. Days in calendar
Gets sets maximum date as Date. The set method does not update html. In order to refresh image, application should call refresh(). Note: new value does not persist to server. Maximum date
Gets sets minimum date as Date. Notes: New value does not persist to server. The set method does not update html. In order to refresh image, application should call refresh(). Minimum date
Gets sets selected dates. The get method creates and returns array of selected dates in calendar as Date objects. The set method removes possible selected range. Note: when dates are set, then they should be sorted in ascending order. Array of dates
Creates and returns array which contains minumum and maximum dates or current range. The get returns null or array of 2 Date objects. The set should contain array of minimum and maximum dates. The set does not change possible selected dates and it has effect only when multi selection is enabled. Array of dates
Gets id of active element in calendar from the mouse event of browser. That is method used internally and can be used publically by advanced applications.