$dateFormat = 'iso'
[line 308]
How the date should be shown to the user and submitted to the server.
!!! DEPRECATED !!!
Possible values (default is 'iso'):
'eu' => dd.mm.yyyy (eg 31.12.2003)
'us' => mm/dd/yyyy (eg 12/31/2003)
'iso' => yyyy-mm-dd (eg 2003-12-31)
If you change this value at runtime (after rendering) you have to call updateInputField() to make the change active immediatly.
Tags:
$dateInputClassName =
[line 202]
Customize look. When using a CSS you may add a CSS class name that will be used when rendering the field.
This is more for the advanced user.
Tags:
$dayBgColor = 'white'
[line 188]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$dayBgColorActive = '#0A246A'
[line 190]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$dayBgColorOver = '#FFFFE1'
[line 192]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$dayClassName =
[line 206]
Customize look. When using a CSS you may add a CSS class name that will be used when rendering the field.
This is more for the advanced user.
Tags:
$dayFontColor = 'black'
[line 187]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$dayFontColorActive = 'white'
[line 189]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$dayHeaderBgColor = '#808080'
[line 186]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$dayHeaderClassName =
[line 205]
Customize look. When using a CSS you may add a CSS class name that will be used when rendering the field.
This is more for the advanced user.
Tags:
$dayHeaderFontColor = '#D4D0C8'
[line 185]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$daysEn = array('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday')
[line 157]
The english day names.
Abbreviated forms are made by just using the first 1, 2 or 3 characters.
Tags:
$daysNumChars = 2
[line 167]
The number of chars to display for the abbreviated day names.
A value of 1, 2 or 3 makes sense. 0 means all but is not recommended.
Tags:
$dayTableAttributeString = 'width="100%" border="0" cellspacing="0" cellpadding="3"'
[line 221]
The table attributes of the day table.
By changing this you can for example add horizontal and vertical lines between the days.
Note:
- 'bgcolor' and 'class' cannot be used here, they will be added manually,
Tags:
$dayTableBgColor = 'white'
[line 191]
Customize look. By setting a collor code (e.g. '#D4D0C8') or collor string (e.g. 'white') you can customize the look.
Tags:
$dayTableClassName =
[line 201]
Customize look. When using a CSS you may add a CSS class name that will be used when rendering the field.
This is more for the advanced user.
Tags:
$displayDateFormat = 'iso'
[line 287]
How the date should be shown to the user.
Possible values (default is 'iso'):
'eu' => dd.mm.yyyy (eg 31.12.2003)
'us' => mm/dd/yyyy (eg 12/31/2003)
'iso' => yyyy-mm-dd (eg 2003-12-31)
Tags:
$fieldName = fieldName
[line 115]
When submitting the form, you'll receive the date value under this name.
In other words you'll receive the data back to the server as if you had placed
1 <input type=text name="[the fieldName]" id="[the fieldName]" value="[the value]">
into your HTML-form.
Tags:
$internalDateFormat = 'iso'
[line 269]
How the date should be submitted to the server.
Possible values (default is 'iso'):
'eu' => dd.mm.yyyy (eg 31.12.2003)
'us' => mm/dd/yyyy (eg 12/31/2003)
'iso' => yyyy-mm-dd (eg 2003-12-31)
Tags:
$jsBaseDir = '/_bsJavascript/'
[line 123]
the base dir to the blueshoes javascript directory.
if you don't use the framework you should change it, see the examples.
Tags:
$monthLongEn = array('January', 'February', 'March', 'April', 'Mai', 'June', 'July', 'August', 'September', 'October', 'November', 'December')
[line 139]
The full english month names.
abbreviated forms are made by just using the first 1, 2 or 3 characters.
Tags:
$monthNumChars = 0
[line 148]
The number of chars to display for the abbreviated month names (0=all).
A value of 0(=all), 2 or 3 makes sense. 1 is not recommended.
Tags:
$monthSelectClassName =
[line 203]
Customize look. When using a CSS you may add a CSS class name that will be used when rendering the field.
This is more for the advanced user.
Tags:
$openByInit = false
[line 130]
If the datePicker should be open by default.
Tags:
$toggleButton =
[line 368]
instance of Bs_Button. used to open/close the calendar layer.
Tags:
$useSpinEditForYear = (typeof(Bs_NumberField) != 'undefined')
[line 179]
if the year input field should be converted into a Bs_NumberField.
Default is true *IF* Bs_NumberField is present (by included); otherwise false. it is great fun. see the example 1 at: http://www.blueshoes.org/_bsJavascript/components/datepicker/examples/example1.html
Tags:
$validateErrorMsgEn = "Not a valid date: '__VALUE__'. Try again or use the date picker. Valid formats are:\nAmerican mm/dd/yyyy (eg 12/31/2003)\nEuropean dd.mm.yyyy (eg 31.12.2003)\nISO yyyy-mm-dd (eg 2003-12-31)"
[line 241]
Date validation error message in English.
The special string '__VALUE__' can be used and will be replaced with the user-supplied date.
Tags:
$width = 150
[line 232]
The width of the whole date picker box in pixel, 150 is a good value.
note that the text input field currently uses the same width (size), even if a dateInputClassName (css) is defined.
Tags:
$yearInputClassName =
[line 204]
Customize look. When using a CSS you may add a CSS class name that will be used when rendering the field.
This is more for the advanced user.
Tags:
$_constructor =
[line 1190]