Class TDatePicker

Description

TDatePicker class.

Be aware, this control is EXPERIMENTAL and is not stablized yet.

TDatePicker displays a text box for date input purpose. When the text box receives focus, a calendar will pop up and users can pick up from it a date that will be automatically entered into the text box. The format of the date string displayed in the text box is determined by the DateFormat property. Valid formats are the combination of the following tokens,

  1. Character Format Pattern (en-US)
  2. -----------------------------------------
  3. d day digit
  4. dd padded day digit e.g. 01, 02
  5. M month digit
  6. MM padded month digit
  7. MMMM localized month name, e.g. March, April
  8. yy 2 digit year
  9. yyyy 4 digit year
  10. -----------------------------------------

TDatePicker has three Mode to show the date picker popup.

  • Basic -- Only shows a text input, focusing on the input shows the date picker.
  • Button -- Shows a button next to the text input, clicking on the button shows the date, button text can be by the ButtonText property
  • ImageButton -- Shows an image next to the text input, clicking on the image shows the date picker, image source can be change through the ButtonImageUrl property.
The CssClass property can be used to override the css class name for the date picker panel. CalendarStyle property sets the packages styles available. E.g. default.

The InputMode property can be set to "TextBox" or "DropDownList" with default as "TextBox". In <tt>DropDownList</tt> mode, in addition to the popup date picker, three drop down list (day, month and year) are presented to select the date .

Located in /Web/UI/WebControls/TDatePicker.php (line 69)

TComponent
   |
   --TApplicationComponent
      |
      --TControl
         |
         --TWebControl
            |
            --TTextBox
               |
               --TDatePicker
Method Summary
string getButtonImageUrl ()
string getButtonText ()
string getCalendarStyle ()
string getCulture ()
string getCurrentCulture ()
string getDate ()
string getDateFormat ()
array getDateFromPostData (string $key, array $values)
integer getFirstDayOfWeek ()
integer getFromYear ()
void getInputMode ()
string getMode ()
boolean getShowCalendar ()
integer getTimeStamp ()
integer getUpToYear ()
void hasDayPattern ()
boolean loadPostData (string $key, array $values)
void onPreRender (mixed $param)
void render (THtmlWriter $writer)
void renderCalendarDayOptions (THtmlWriter $writer, [mixed $selected = null])
void renderCalendarMonthOptions (THtmlWriter $writer, [mixed $selected = null])
void renderCalendarSelections (THtmlWriter $writer, array $date)
void renderCalendarYearOptions (THtmlWriter $writer, [mixed $selected = null])
void renderDatePickerButtons (mixed $writer)
void renderDropDownListCalendar (mixed $writer)
void setButtonImageUrl (string $value)
void setButtonText (string $value)
void setCalendarStyle (string $value)
void setCulture (string $value)
void setDate (string $value)
void setDateFormat (string $value)
void setFirstDayOfWeek (integer $value)
void setFromYear (integer $value)
void setInputMode (mixed $value)
void setMode (string $value)
void setShowCalendar (boolean $value)
void setTimeStamp (integer $value)
void setUpToYear (integer $value)
Methods
addAttributesToRender (line 701)

Add the client id to the input textbox, and register the client scripts.

  • access: protected
void addAttributesToRender (THtmlWriter $writer)

Redefinition of:
TTextBox::addAttributesToRender()
Adds attribute name-value pairs to renderer.
getButtonImageUrl (line 159)
  • return: the image url for "Image" UI mode.
  • access: public
string getButtonImageUrl ()
getButtonText (line 200)
  • return: text for the date picker button. Default is "...".
  • access: public
string getButtonText ()
getCalendarStyle (line 175)
  • return: current calendar style
  • access: public
string getCalendarStyle ()
getCulturalOptions (line 419)

Get javascript localization options, e.g. month and weekday names.

  • return: localization options.
  • access: protected
array getCulturalOptions ()
getCulture (line 109)

Gets the current culture.

  • return: current culture, e.g. en_AU.
  • access: public
string getCulture ()
getCurrentCulture (line 435)
  • return: the current culture, falls back to application if culture is not set.
  • access: protected
string getCurrentCulture ()
getDate (line 268)
  • return: the date string.
  • access: public
string getDate ()
getDateFormat (line 74)
  • return: the format of the date string
  • access: public
string getDateFormat ()
getDateFromPostData (line 369)

Loads date from drop down list data.

  • return: the date selected
  • access: protected
array getDateFromPostData (string $key, array $values)
  • string $key: the key that can be used to retrieve data from the input data collection
  • array $values: the input data collection
getDatePickerButtonID (line 619)

Gets the ID for the date picker trigger button.

  • return: unique button ID
  • access: protected
string getDatePickerButtonID ()
getDatePickerOptions (line 398)

Get javascript date picker options.

  • return: date picker client-side options
  • access: protected
array getDatePickerOptions ()
getFirstDayOfWeek (line 192)
  • return: first day of the week
  • access: public
integer getFirstDayOfWeek ()
getFromYear (line 224)
  • return: date picker starting year, default is -5 years
  • access: public
integer getFromYear ()
getInputMode (line 128)
  • access: public
void getInputMode ()
getLocalizedCalendarInfo (line 445)
  • return: date time format information for the current culture.
  • access: protected
DateTimeFormatInfo getLocalizedCalendarInfo ()
getLocalizedMonthNames (line 582)

Returns the localized month names that depends on the month format pattern.

"MMMM" will return the month names, "MM" or "MMM" return abbr. month names and "M" return month digits.

  • return: localized month names.
  • access: protected
array getLocalizedMonthNames (DateTimeFormatInfo $info)
getMode (line 144)
  • return: current calendar UI mode.
  • access: public
string getMode ()
getShowCalendar (line 91)
  • return: whether the calendar window should pop up when the control receives focus
  • access: public
boolean getShowCalendar ()
getTimeStamp (line 248)
  • return: current selected date from the date picker as timestamp.
  • access: public
integer getTimeStamp ()
getTimeStampFromText (line 515)

Gets the date from the text input using TSimpleDateFormatter

  • return: current selected date timestamp
  • access: protected
integer getTimeStampFromText ()
getUpToYear (line 240)
  • return: date picker ending year, default +10 years
  • access: public
integer getUpToYear ()
getValidationPropertyValue (line 286)

Returns the value to be validated.

This methid is required by IValidatable interface.

  • return: the value of the property to be validated.
  • access: public
integer getValidationPropertyValue ()

Redefinition of:
TTextBox::getValidationPropertyValue()
Returns the value to be validated.
hasDayPattern (line 484)
  • access: protected
void hasDayPattern ()
loadPostData (line 349)

Loads user input data. Override parent implementation, when InputMode is DropDownList call getDateFromPostData to get date data.

This method is primarly used by framework developers.

  • return: whether the data of the component has been changed
  • access: public
boolean loadPostData (string $key, array $values)
  • string $key: the key that can be used to retrieve data from the input data collection
  • array $values: the input data collection

Redefinition of:
TTextBox::loadPostData()
Loads user input data.
onPreRender (line 296)

Publish the date picker Css asset files.

  • access: public
void onPreRender (mixed $param)

Redefinition of:
TControl::onPreRender()
This method is invoked when the control enters 'OnPreRender' stage.
publishCalendarStyle (line 670)

Publish the calendar style Css asset file.

  • return: Css file url.
  • access: protected
string publishCalendarStyle ()
publishDefaultButtonImage (line 657)

Publish the default button image asset file.

  • return: image file url.
  • access: protected
string publishDefaultButtonImage ()
publishIFrameSpacer (line 689)

Publish the spacer.gif for IE iframe source.

  • return: the URL for the spacer.gif.
  • access: protected
string publishIFrameSpacer ()
registerCalendarClientScript (line 712)

Registers the javascript code to initialize the date picker.

  • access: protected
void registerCalendarClientScript ()
render (line 308)

Renders body content.

This method overrides parent implementation by adding additional date picker button if Mode is "Button" or "ImageButton".

  • access: public
void render (THtmlWriter $writer)

Redefinition of:
TWebControl::render()
Renders the control.
renderButtonDatePicker (line 628)

Adds an additional button such that when clicked it shows the date picker.

  • return: writer
  • access: protected
THtmlWriter renderButtonDatePicker (mixed $writer)
renderCalendarDayOptions (line 547)

Renders the day drop down list options.

  • access: protected
void renderCalendarDayOptions (THtmlWriter $writer, [mixed $selected = null])
  • THtmlWriter $writer: the writer used for the rendering purpose
  • mixed $selected: selected day.
renderCalendarMonthOptions (line 563)

Renders the month drop down list options.

  • access: protected
void renderCalendarMonthOptions (THtmlWriter $writer, [mixed $selected = null])
  • THtmlWriter $writer: the writer used for the rendering purpose
  • mixed $selected: selected month.
renderCalendarSelections (line 496)

Renders the calendar drop down list depending on the DateFormat pattern.

  • access: protected
void renderCalendarSelections (THtmlWriter $writer, array $date)
  • THtmlWriter $writer: the Html writer to render the drop down lists.
  • array $date: the current selected date
renderCalendarYearOptions (line 602)

Renders the year drop down list options.

  • access: protected
void renderCalendarYearOptions (THtmlWriter $writer, [mixed $selected = null])
  • THtmlWriter $writer: the writer used for the rendering purpose
  • mixed $selected: selected year.
renderDatePickerButtons (line 329)

Renders the date picker popup buttons.

  • access: protected
void renderDatePickerButtons (mixed $writer)
renderDropDownListCalendar (line 457)

Renders the drop down list date picker.

  • access: protected
void renderDropDownListCalendar (mixed $writer)
renderImageButtonDatePicker (line 642)

Adds an additional image button such that when clicked it shows the date picker.

  • return: writer
  • access: protected
THtmlWriter renderImageButtonDatePicker (mixed $writer)
setButtonImageUrl (line 151)
  • access: public
void setButtonImageUrl (string $value)
  • string $value: the image url for "Image" UI mode.
setButtonText (line 208)
  • access: public
void setButtonText (string $value)
  • string $value: text for the date picker button
setCalendarStyle (line 167)
  • access: public
void setCalendarStyle (string $value)
  • string $value: set the calendar style
setCulture (line 118)

Sets the culture/language for the date picker.

  • access: public
void setCulture (string $value)
  • string $value: a culture string, e.g. en_AU.
setDate (line 276)
  • access: public
void setDate (string $value)
  • string $value: date string
setDateFormat (line 83)

Sets the format of the date string.

  • access: public
void setDateFormat (string $value)
  • string $value: the format of the date string
setFirstDayOfWeek (line 184)

Set the first day of week, with 0 as Sunday, 1 as Monday, etc.

  • access: public
void setFirstDayOfWeek (integer $value)
  • integer $value: 0 for Sunday, 1 for Monday, 2 for Tuesday, etc.
setFromYear (line 216)
  • access: public
void setFromYear (integer $value)
  • integer $value: date picker starting year, default is 2000.
setInputMode (line 123)
  • access: public
void setInputMode (mixed $value)
setMode (line 136)
  • access: public
void setMode (string $value)
  • string $value: calendar UI mode, "Basic", "Button" or "ImageButton"
setShowCalendar (line 100)

Sets whether to pop up the calendar window when the control receives focus

  • access: public
void setShowCalendar (boolean $value)
  • boolean $value: whether to show the calendar window
setTimeStamp (line 257)

Sets the date for the date picker using timestamp.

  • access: public
void setTimeStamp (integer $value)
  • integer $value: time stamp for the date picker
setUpToYear (line 232)
  • access: public
void setUpToYear (integer $value)
  • integer $value: date picker ending year, default +10 years

Inherited Methods

Inherited From TTextBox

TTextBox::addAttributesToRender()
TTextBox::getAutoCompleteType()
TTextBox::getAutoPostBack()
TTextBox::getAutoTrim()
TTextBox::getCausesValidation()
TTextBox::getColumns()
TTextBox::getMaxLength()
TTextBox::getPostBackOptions()
TTextBox::getReadOnly()
TTextBox::getRows()
TTextBox::getSafeText()
TTextBox::getSafeTextParser()
TTextBox::getTagName()
TTextBox::getText()
TTextBox::getTextMode()
TTextBox::getValidationGroup()
TTextBox::getValidationPropertyValue()
TTextBox::getWrap()
TTextBox::loadPostData()
TTextBox::onTextChanged()
TTextBox::raisePostDataChangedEvent()
TTextBox::renderContents()
TTextBox::setAutoCompleteType()
TTextBox::setAutoPostBack()
TTextBox::setAutoTrim()
TTextBox::setCausesValidation()
TTextBox::setColumns()
TTextBox::setMaxLength()
TTextBox::setReadOnly()
TTextBox::setRows()
TTextBox::setText()
TTextBox::setTextMode()
TTextBox::setValidationGroup()
TTextBox::setWrap()

Inherited From TWebControl

TWebControl::addAttributesToRender()
TWebControl::copyBaseAttributes()
TWebControl::createStyle()
TWebControl::getAccessKey()
TWebControl::getBackColor()
TWebControl::getBorderColor()
TWebControl::getBorderStyle()
TWebControl::getBorderWidth()
TWebControl::getCssClass()
TWebControl::getFont()
TWebControl::getForeColor()
TWebControl::getHasStyle()
TWebControl::getHeight()
TWebControl::getStyle()
TWebControl::getTabIndex()
TWebControl::getTagName()
TWebControl::getToolTip()
TWebControl::getWidth()
TWebControl::render()
TWebControl::renderBeginTag()
TWebControl::renderContents()
TWebControl::renderEndTag()
TWebControl::setAccessKey()
TWebControl::setBackColor()
TWebControl::setBorderColor()
TWebControl::setBorderStyle()
TWebControl::setBorderWidth()
TWebControl::setCssClass()
TWebControl::setForeColor()
TWebControl::setHeight()
TWebControl::setStyle()
TWebControl::setTabIndex()
TWebControl::setToolTip()
TWebControl::setWidth()

Inherited From TControl

TControl::__construct()
TControl::addedControl()
TControl::addParsedObject()
TControl::applyStyleSheetSkin()
TControl::autoBindProperty()
TControl::autoDataBindProperties()
TControl::bindProperty()
TControl::broadcastEvent()
TControl::broadcastEventInternal()
TControl::bubbleEvent()
TControl::clearChildState()
TControl::clearControlState()
TControl::clearNamingContainer()
TControl::clearViewState()
TControl::createChildControls()
TControl::createControlCollection()
TControl::createdOnTemplate()
TControl::dataBind()
TControl::dataBindChildren()
TControl::dataBindProperties()
TControl::ensureChildControls()
TControl::findControl()
TControl::findControlsByID()
TControl::findControlsByType()
TControl::focus()
TControl::getAdapter()
TControl::getAllowChildControls()
TControl::getAttribute()
TControl::getAttributes()
TControl::getChildControlsCreated()
TControl::getClientID()
TControl::getControls()
TControl::getControlStage()
TControl::getControlState()
TControl::getEnabled()
TControl::getEnableTheming()
TControl::getEnableViewState()
TControl::getHasAdapter()
TControl::getHasAttributes()
TControl::getHasControls()
TControl::getID()
TControl::getNamingContainer()
TControl::getPage()
TControl::getParent()
TControl::getRegisteredObject()
TControl::getSkinID()
TControl::getSourceTemplateControl()
TControl::getTemplateControl()
TControl::getUniqueID()
TControl::getViewState()
TControl::getVisible()
TControl::hasAttribute()
TControl::initRecursive()
TControl::isDescendentOf()
TControl::isObjectRegistered()
TControl::loadRecursive()
TControl::loadState()
TControl::loadStateRecursive()
TControl::onDataBinding()
TControl::onInit()
TControl::onLoad()
TControl::onPreRender()
TControl::onUnload()
TControl::preRenderRecursive()
TControl::raiseBubbleEvent()
TControl::registerObject()
TControl::removeAttribute()
TControl::removedControl()
TControl::render()
TControl::renderChildren()
TControl::renderControl()
TControl::saveState()
TControl::saveStateRecursive()
TControl::setAdapter()
TControl::setAttribute()
TControl::setChildControlsCreated()
TControl::setControlStage()
TControl::setControlState()
TControl::setEnabled()
TControl::setEnableTheming()
TControl::setEnableViewState()
TControl::setID()
TControl::setPage()
TControl::setSkinID()
TControl::setTemplateControl()
TControl::setViewState()
TControl::setVisible()
TControl::traverseChildControls()
TControl::unbindProperty()
TControl::unloadRecursive()
TControl::unregisterObject()
TControl::__get()

Inherited From TApplicationComponent

TApplicationComponent::getApplication()
TApplicationComponent::getRequest()
TApplicationComponent::getResponse()
TApplicationComponent::getService()
TApplicationComponent::getSession()
TApplicationComponent::getUser()
TApplicationComponent::publishAsset()
TApplicationComponent::publishFilePath()

Inherited From TComponent

TComponent::attachEventHandler()
TComponent::canGetProperty()
TComponent::canSetProperty()
TComponent::detachEventHandler()
TComponent::evaluateExpression()
TComponent::evaluateStatements()
TComponent::getEventHandlers()
TComponent::getSubProperty()
TComponent::hasEvent()
TComponent::hasEventHandler()
TComponent::hasProperty()
TComponent::raiseEvent()
TComponent::setSubProperty()
TComponent::__get()
TComponent::__set()
Class Constants

Inherited Constants

Inherited from TTextBox

Inherited from TControl

Documentation generated on Sun, 04 Jun 2006 18:59:15 -0400 by phpDocumentor 1.3.0RC4