C# Class Fluqi.Widget.jDatePicker.Options

A set of properties to apply to a set of jQuery UI DatePicker.
Properties not yet supported:
Inheritance: Core.Options
Datei anzeigen Open project: toepoke/Fluqi Class Usage Examples

Public Methods

Method Description
SetAltField ( string altField ) : Options

The jQuery selector for another field that is to be updated with the selected date from the datepicker. Use the altFormat setting to change the format of the date within this field. Leave as blank for no alternate field.

SetAltFormat ( string altFormat ) : Options

The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function

SetAppendText ( string appendText ) : Options

The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function

SetAutoSize ( bool autoSize ) : Options

Set to true to automatically resize the input field to accommodate dates in the current dateFormat.

SetButtonImage ( string buttonImage ) : Options

The URL for the popup button image. If set, buttonText becomes the alt value and is not directly displayed.

SetButtonImageOnly ( bool buttonImageOnly ) : Options

Set to true to place an image after the field to use as the trigger without it appearing on a button.

SetButtonText ( string buttonText ) : Options

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'.

SetCalculateWeek ( string calculateWeek ) : Options

A function to calculate the week of the year for a given date. The default implementation uses the ISO 8601 definition: weeks start on a Monday; the first week of the year contains the first Thursday of the year.

SetChangeMonth ( bool changeMonth ) : Options

Allows you to change the month by selecting from a drop-down list. You can enable this feature by setting the attribute to true.

SetChangeYear ( bool changeYear ) : Options

Allows you to change the year by selecting from a drop-down list. You can enable this feature by setting the attribute to true. Use the yearRange option to control which years are made available for selection.

SetCloseText ( string closeText ) : Options

The text to display for the close link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button.

SetConstrainInput ( bool constrainInput ) : Options

When true entry in the input field is constrained to those characters allowed by the current dateFormat.

SetCurrentText ( string currentText ) : Options

The text to display for the current day link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button.

SetDateFormat ( string dateFormat ) : Options

The format for parsed and displayed dates. This attribute is one of the regionalisation attributes. For a full list of the possible formats see the formatDate function.

SetDayNames ( List dayNames ) : Options

The list of long day names, starting from Sunday, for use as requested via the dateFormat setting. They also appear as popup hints when hovering over the corresponding column headings. This attribute is one of the regionalisation attributes.

SetDayNames ( string dayNames ) : Options

The list of long day names, starting from Sunday, for use as requested via the dateFormat setting. They also appear as popup hints when hovering over the corresponding column headings. This attribute is one of the regionalisation attributes.

SetDayNamesMin ( List dayNamesMin ) : Options

The list of minimised day names, starting from Sunday, for use as column headers within the datepicker. This attribute is one of the regionalisation attributes.

SetDayNamesMin ( string dayNamesMin ) : Options

The list of minimised day names, starting from Sunday, for use as column headers within the datepicker. This attribute is one of the regionalisation attributes.

SetDayNamesShort ( List dayNamesShort ) : Options

The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

SetDayNamesShort ( string dayNamesShort ) : Options

The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

SetDefaultDate ( System.DateTime newDate ) : Options

Set the date to highlight on first opening if the field is blank, using an actual date object.

SetDefaultDate ( int relativeDays ) : Options

Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.

SetDefaultDate ( string defaultDate ) : Options

Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.

SetDisabled ( bool disabled ) : Options

Disables (true) or enables (false) the control. Can be set when initialising (first creating) the control.

SetDuration ( Core speed ) : Options

Control the speed at which the datepicker appears using one of the three predefined speeds ("slow", "normal", "fast").

SetDuration ( int durationInMilliseconds ) : Options

Control the speed at which the datepicker appears, it may be a time in milliseconds or a string representing one of the three predefined speeds ("slow", "normal", "fast").

SetDuration ( string duration ) : Options

Control the speed at which the datepicker appears using one of the three predefined speeds ("slow", "normal", "fast").

SetFirstDay ( int firstDay ) : Options

Set the first day of the week: Sunday is 0, Monday is 1, ... This attribute is one of the regionalisation attributes.

SetGotoCurrent ( bool gotoCurrent ) : Options

When true the current day link moves to the currently selected date instead of today.

SetHideIfNoPrevNext ( bool hideIfNoPrevNext ) : Options

Normally the previous and next links are disabled when not applicable (see minDate/maxDate). You can hide them altogether by setting this attribute to true.

SetIsRTL ( bool isRTL ) : Options

True if the current language is drawn from right to left. This attribute is one of the regionalisation attributes

SetMaxDate ( System.DateTime maxDate ) : Options

Set a maximum selectable date via a Date object.

SetMaxDate ( int relativeDays ) : Options

Set a maximum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +1w'), or null for no limit.

SetMaxDate ( string maxDate ) : Options

Set a maximum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +1w'), or null for no limit.

SetMinDate ( System.DateTime minDate ) : Options

Set a minimum selectable date via a Date object.

SetMinDate ( int relativeDays ) : Options

Set a minimum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '-1y -1m'), or null for no limit.

SetMinDate ( string minDate ) : Options

Set a minimum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '-1y -1m'), or null for no limit.

SetMonthNames ( List monthNames ) : Options

The list of full month names, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

SetMonthNames ( string monthNames ) : Options

The list of full month names, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

SetMonthNamesShort ( List monthNamesShort ) : Options

The list of abbreviated month names, as used in the month header on each datepicker and as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

SetMonthNamesShort ( string monthNamesShort ) : Options

The list of abbreviated month names, as used in the month header on each datepicker and as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.

SetNavigationAsDateFormat ( bool navigationAsDateFormat ) : Options

When true the formatDate function is applied to the prevText, nextText, and currentText values before display, allowing them to display the target month names for example.

SetNextText ( string nextText ) : Options

The text to display for the next month link. This attribute is one of the regionalisation attributes. With the standard ThemeRoller styling, this value is replaced by an icon.

SetNumberOfMonths ( int numberOfMonths ) : Options

Set how many months to show at once. The value can be a straight integer, or can be a two-element array to define the number of rows and columns to display.

SetNumberOfMonths ( int rows, int columns ) : Options

Set how many months to show at once. The value can be a straight integer, or can be a two-element array to define the number of rows and columns to display.

SetPrevText ( string prevText ) : Options

The text to display for the previous month link. This attribute is one of the regionalisation attributes. With the standard ThemeRoller styling, this value is replaced by an icon.

SetSelectOtherMonths ( bool selectOtherMonths ) : Options

When true days in other months shown before or after the current month are selectable. This only applies if showOtherMonths is also true.

SetShortYearCutoff ( int shortYearCutOff ) : Options

Set the cutoff year for determining the century for a date (used in conjunction with dateFormat 'y'). If a numeric value (0-99) is provided then this value is used directly. If a string value is provided then it is converted to a number and added to the current year. Once the cutoff year is calculated, any dates entered with a year value less than or equal to it are considered to be in the current century, while those greater than it are deemed to be in the previous century.

SetShortYearCutoff ( string shortYearCutoff ) : Options

Set the cutoff year for determining the century for a date (used in conjunction with dateFormat 'y'). If a numeric value (0-99) is provided then this value is used directly. If a string value is provided then it is converted to a number and added to the current year. Once the cutoff year is calculated, any dates entered with a year value less than or equal to it are considered to be in the current century, while those greater than it are deemed to be in the previous century.

SetShowAnim ( Core showAnimation ) : Options

Set the name of the animation used to show/hide the datepicker. Use 'show' (the default), 'slideDown', 'fadeIn', any of the show/hide jQuery UI effects, or '' for no animation.

SetShowAnim ( string showAnim ) : Options

Set the name of the animation used to show/hide the datepicker. Use 'show' (the default), 'slideDown', 'fadeIn', any of the show/hide jQuery UI effects, or '' for no animation.

SetShowButtonPanel ( bool showButtonPanel ) : Options

Whether to show the button panel

SetShowCurrentAtPos ( int showCurrentAtPos ) : Options

Specify where in a multi-month display the current month shows, starting from 0 at the top/left

SetShowInline ( bool showInline ) : Options

Shows the calendar inline on the page (attaches the datePicker to a DIV rather than an INPUT)

SetShowMonthAfterYear ( bool showMonthAfterYear ) : Options

Whether to show the month after the year in the header. This attribute is one of the regionalisation attributes.

SetShowOn ( string showOn ) : Options

Have the datepicker appear automatically when the field receives focus ('focus'), appear only when a button is clicked ('button'), or appear when either event takes place ('both').

SetShowOptions ( string showOptions ) : Options

If using one of the jQuery UI effects for showAnim, you can provide additional settings for that animation via this option. showOptions is expected to be a JSON type object, including the curly braces.

SetShowOtherMonths ( bool showOtherMonths ) : Options

Display dates in other months (non-selectable) at the start or end of the current month. To make these days selectable use selectOtherMonths.

SetShowWeek ( bool showWeek ) : Options

When true a column is added to show the week of the year. The calculateWeek option determines how the week of the year is calculated. You may also want to change the firstDay option.

SetStepMonths ( int stepMonths ) : Options

Set how many months to move when clicking the Previous/Next links

SetWeekHeader ( string weekHeader ) : Options

The text to display for the week of the year column heading. This attribute is one of the regionalisation attributes. Use showWeek to display this column.

SetYearRange ( string yearRange ) : Options

Control the range of years displayed in the year drop-down: either relative to today's year (-nn:+nn), relative to the currently selected year (c-nn:c+nn), absolute (nnnn:nnnn), or combinations of these formats (nnnn:-nn). Note that this option only affects what appears in the drop-down, to restrict which dates may be selected use the minDate and/or maxDate options.

SetYearSuffix ( string yearSuffix ) : Options

Additional text to display after the year in the month headers. This attribute is one of the regionalisation attributes.

Method Details

SetAltField() public method

The jQuery selector for another field that is to be updated with the selected date from the datepicker. Use the altFormat setting to change the format of the date within this field. Leave as blank for no alternate field.
public SetAltField ( string altField ) : Options
altField string
return Options

SetAltFormat() public method

The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function
public SetAltFormat ( string altFormat ) : Options
altFormat string
return Options

SetAppendText() public method

The dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function
public SetAppendText ( string appendText ) : Options
appendText string
return Options

SetAutoSize() public method

Set to true to automatically resize the input field to accommodate dates in the current dateFormat.
public SetAutoSize ( bool autoSize ) : Options
autoSize bool
return Options

SetButtonImage() public method

The URL for the popup button image. If set, buttonText becomes the alt value and is not directly displayed.
public SetButtonImage ( string buttonImage ) : Options
buttonImage string
return Options

SetButtonImageOnly() public method

Set to true to place an image after the field to use as the trigger without it appearing on a button.
public SetButtonImageOnly ( bool buttonImageOnly ) : Options
buttonImageOnly bool
return Options

SetButtonText() public method

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'.
public SetButtonText ( string buttonText ) : Options
buttonText string
return Options

SetCalculateWeek() public method

A function to calculate the week of the year for a given date. The default implementation uses the ISO 8601 definition: weeks start on a Monday; the first week of the year contains the first Thursday of the year.
public SetCalculateWeek ( string calculateWeek ) : Options
calculateWeek string
return Options

SetChangeMonth() public method

Allows you to change the month by selecting from a drop-down list. You can enable this feature by setting the attribute to true.
public SetChangeMonth ( bool changeMonth ) : Options
changeMonth bool
return Options

SetChangeYear() public method

Allows you to change the year by selecting from a drop-down list. You can enable this feature by setting the attribute to true. Use the yearRange option to control which years are made available for selection.
public SetChangeYear ( bool changeYear ) : Options
changeYear bool
return Options

SetCloseText() public method

The text to display for the close link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button.
public SetCloseText ( string closeText ) : Options
closeText string
return Options

SetConstrainInput() public method

When true entry in the input field is constrained to those characters allowed by the current dateFormat.
public SetConstrainInput ( bool constrainInput ) : Options
constrainInput bool
return Options

SetCurrentText() public method

The text to display for the current day link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button.
public SetCurrentText ( string currentText ) : Options
currentText string
return Options

SetDateFormat() public method

The format for parsed and displayed dates. This attribute is one of the regionalisation attributes. For a full list of the possible formats see the formatDate function.
public SetDateFormat ( string dateFormat ) : Options
dateFormat string
return Options

SetDayNames() public method

The list of long day names, starting from Sunday, for use as requested via the dateFormat setting. They also appear as popup hints when hovering over the corresponding column headings. This attribute is one of the regionalisation attributes.
public SetDayNames ( List dayNames ) : Options
dayNames List
return Options

SetDayNames() public method

The list of long day names, starting from Sunday, for use as requested via the dateFormat setting. They also appear as popup hints when hovering over the corresponding column headings. This attribute is one of the regionalisation attributes.
public SetDayNames ( string dayNames ) : Options
dayNames string
return Options

SetDayNamesMin() public method

The list of minimised day names, starting from Sunday, for use as column headers within the datepicker. This attribute is one of the regionalisation attributes.
public SetDayNamesMin ( List dayNamesMin ) : Options
dayNamesMin List
return Options

SetDayNamesMin() public method

The list of minimised day names, starting from Sunday, for use as column headers within the datepicker. This attribute is one of the regionalisation attributes.
public SetDayNamesMin ( string dayNamesMin ) : Options
dayNamesMin string
return Options

SetDayNamesShort() public method

The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
public SetDayNamesShort ( List dayNamesShort ) : Options
dayNamesShort List
return Options

SetDayNamesShort() public method

The list of abbreviated day names, starting from Sunday, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
public SetDayNamesShort ( string dayNamesShort ) : Options
dayNamesShort string
return Options

SetDefaultDate() public method

Set the date to highlight on first opening if the field is blank, using an actual date object.
public SetDefaultDate ( System.DateTime newDate ) : Options
newDate System.DateTime
return Options

SetDefaultDate() public method

Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.
public SetDefaultDate ( int relativeDays ) : Options
relativeDays int
return Options

SetDefaultDate() public method

Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.
public SetDefaultDate ( string defaultDate ) : Options
defaultDate string
return Options

SetDisabled() public method

Disables (true) or enables (false) the control. Can be set when initialising (first creating) the control.
public SetDisabled ( bool disabled ) : Options
disabled bool
return Options

SetDuration() public method

Control the speed at which the datepicker appears using one of the three predefined speeds ("slow", "normal", "fast").
public SetDuration ( Core speed ) : Options
speed Core
return Options

SetDuration() public method

Control the speed at which the datepicker appears, it may be a time in milliseconds or a string representing one of the three predefined speeds ("slow", "normal", "fast").
public SetDuration ( int durationInMilliseconds ) : Options
durationInMilliseconds int
return Options

SetDuration() public method

Control the speed at which the datepicker appears using one of the three predefined speeds ("slow", "normal", "fast").
public SetDuration ( string duration ) : Options
duration string
return Options

SetFirstDay() public method

Set the first day of the week: Sunday is 0, Monday is 1, ... This attribute is one of the regionalisation attributes.
public SetFirstDay ( int firstDay ) : Options
firstDay int
return Options

SetGotoCurrent() public method

When true the current day link moves to the currently selected date instead of today.
public SetGotoCurrent ( bool gotoCurrent ) : Options
gotoCurrent bool
return Options

SetHideIfNoPrevNext() public method

Normally the previous and next links are disabled when not applicable (see minDate/maxDate). You can hide them altogether by setting this attribute to true.
public SetHideIfNoPrevNext ( bool hideIfNoPrevNext ) : Options
hideIfNoPrevNext bool
return Options

SetIsRTL() public method

True if the current language is drawn from right to left. This attribute is one of the regionalisation attributes
public SetIsRTL ( bool isRTL ) : Options
isRTL bool
return Options

SetMaxDate() public method

Set a maximum selectable date via a Date object.
public SetMaxDate ( System.DateTime maxDate ) : Options
maxDate System.DateTime
return Options

SetMaxDate() public method

Set a maximum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +1w'), or null for no limit.
public SetMaxDate ( int relativeDays ) : Options
relativeDays int
return Options

SetMaxDate() public method

Set a maximum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +1w'), or null for no limit.
public SetMaxDate ( string maxDate ) : Options
maxDate string
return Options

SetMinDate() public method

Set a minimum selectable date via a Date object.
public SetMinDate ( System.DateTime minDate ) : Options
minDate System.DateTime
return Options

SetMinDate() public method

Set a minimum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '-1y -1m'), or null for no limit.
public SetMinDate ( int relativeDays ) : Options
relativeDays int
return Options

SetMinDate() public method

Set a minimum selectable date via a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '-1y -1m'), or null for no limit.
public SetMinDate ( string minDate ) : Options
minDate string
return Options

SetMonthNames() public method

The list of full month names, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
public SetMonthNames ( List monthNames ) : Options
monthNames List
return Options

SetMonthNames() public method

The list of full month names, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
public SetMonthNames ( string monthNames ) : Options
monthNames string
return Options

SetMonthNamesShort() public method

The list of abbreviated month names, as used in the month header on each datepicker and as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
public SetMonthNamesShort ( List monthNamesShort ) : Options
monthNamesShort List
return Options

SetMonthNamesShort() public method

The list of abbreviated month names, as used in the month header on each datepicker and as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
public SetMonthNamesShort ( string monthNamesShort ) : Options
monthNamesShort string
return Options

SetNavigationAsDateFormat() public method

When true the formatDate function is applied to the prevText, nextText, and currentText values before display, allowing them to display the target month names for example.
public SetNavigationAsDateFormat ( bool navigationAsDateFormat ) : Options
navigationAsDateFormat bool
return Options

SetNextText() public method

The text to display for the next month link. This attribute is one of the regionalisation attributes. With the standard ThemeRoller styling, this value is replaced by an icon.
public SetNextText ( string nextText ) : Options
nextText string
return Options

SetNumberOfMonths() public method

Set how many months to show at once. The value can be a straight integer, or can be a two-element array to define the number of rows and columns to display.
public SetNumberOfMonths ( int numberOfMonths ) : Options
numberOfMonths int
return Options

SetNumberOfMonths() public method

Set how many months to show at once. The value can be a straight integer, or can be a two-element array to define the number of rows and columns to display.
public SetNumberOfMonths ( int rows, int columns ) : Options
rows int
columns int
return Options

SetPrevText() public method

The text to display for the previous month link. This attribute is one of the regionalisation attributes. With the standard ThemeRoller styling, this value is replaced by an icon.
public SetPrevText ( string prevText ) : Options
prevText string
return Options

SetSelectOtherMonths() public method

When true days in other months shown before or after the current month are selectable. This only applies if showOtherMonths is also true.
public SetSelectOtherMonths ( bool selectOtherMonths ) : Options
selectOtherMonths bool
return Options

SetShortYearCutoff() public method

Set the cutoff year for determining the century for a date (used in conjunction with dateFormat 'y'). If a numeric value (0-99) is provided then this value is used directly. If a string value is provided then it is converted to a number and added to the current year. Once the cutoff year is calculated, any dates entered with a year value less than or equal to it are considered to be in the current century, while those greater than it are deemed to be in the previous century.
public SetShortYearCutoff ( int shortYearCutOff ) : Options
shortYearCutOff int
return Options

SetShortYearCutoff() public method

Set the cutoff year for determining the century for a date (used in conjunction with dateFormat 'y'). If a numeric value (0-99) is provided then this value is used directly. If a string value is provided then it is converted to a number and added to the current year. Once the cutoff year is calculated, any dates entered with a year value less than or equal to it are considered to be in the current century, while those greater than it are deemed to be in the previous century.
public SetShortYearCutoff ( string shortYearCutoff ) : Options
shortYearCutoff string
return Options

SetShowAnim() public method

Set the name of the animation used to show/hide the datepicker. Use 'show' (the default), 'slideDown', 'fadeIn', any of the show/hide jQuery UI effects, or '' for no animation.
public SetShowAnim ( Core showAnimation ) : Options
showAnimation Core
return Options

SetShowAnim() public method

Set the name of the animation used to show/hide the datepicker. Use 'show' (the default), 'slideDown', 'fadeIn', any of the show/hide jQuery UI effects, or '' for no animation.
public SetShowAnim ( string showAnim ) : Options
showAnim string
return Options

SetShowButtonPanel() public method

Whether to show the button panel
public SetShowButtonPanel ( bool showButtonPanel ) : Options
showButtonPanel bool
return Options

SetShowCurrentAtPos() public method

Specify where in a multi-month display the current month shows, starting from 0 at the top/left
public SetShowCurrentAtPos ( int showCurrentAtPos ) : Options
showCurrentAtPos int
return Options

SetShowInline() public method

Shows the calendar inline on the page (attaches the datePicker to a DIV rather than an INPUT)
public SetShowInline ( bool showInline ) : Options
showInline bool /// If true datePicker is shown inline (inside a DIV) /// If false datePicker is shown against an INPUT ///
return Options

SetShowMonthAfterYear() public method

Whether to show the month after the year in the header. This attribute is one of the regionalisation attributes.
public SetShowMonthAfterYear ( bool showMonthAfterYear ) : Options
showMonthAfterYear bool
return Options

SetShowOn() public method

Have the datepicker appear automatically when the field receives focus ('focus'), appear only when a button is clicked ('button'), or appear when either event takes place ('both').
public SetShowOn ( string showOn ) : Options
showOn string
return Options

SetShowOptions() public method

If using one of the jQuery UI effects for showAnim, you can provide additional settings for that animation via this option. showOptions is expected to be a JSON type object, including the curly braces.
public SetShowOptions ( string showOptions ) : Options
showOptions string
return Options

SetShowOtherMonths() public method

Display dates in other months (non-selectable) at the start or end of the current month. To make these days selectable use selectOtherMonths.
public SetShowOtherMonths ( bool showOtherMonths ) : Options
showOtherMonths bool
return Options

SetShowWeek() public method

When true a column is added to show the week of the year. The calculateWeek option determines how the week of the year is calculated. You may also want to change the firstDay option.
public SetShowWeek ( bool showWeek ) : Options
showWeek bool
return Options

SetStepMonths() public method

Set how many months to move when clicking the Previous/Next links
public SetStepMonths ( int stepMonths ) : Options
stepMonths int
return Options

SetWeekHeader() public method

The text to display for the week of the year column heading. This attribute is one of the regionalisation attributes. Use showWeek to display this column.
public SetWeekHeader ( string weekHeader ) : Options
weekHeader string
return Options

SetYearRange() public method

Control the range of years displayed in the year drop-down: either relative to today's year (-nn:+nn), relative to the currently selected year (c-nn:c+nn), absolute (nnnn:nnnn), or combinations of these formats (nnnn:-nn). Note that this option only affects what appears in the drop-down, to restrict which dates may be selected use the minDate and/or maxDate options.
public SetYearRange ( string yearRange ) : Options
yearRange string
return Options

SetYearSuffix() public method

Additional text to display after the year in the month headers. This attribute is one of the regionalisation attributes.
public SetYearSuffix ( string yearSuffix ) : Options
yearSuffix string
return Options