C# Класс Fluqi.Widget.jDatePicker.Options

A set of properties to apply to a set of jQuery UI DatePicker.
Properties not yet supported:
Наследование: Core.Options
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

SetAltField() публичный Метод

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
Результат Options

SetAltFormat() публичный Метод

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
Результат Options

SetAppendText() публичный Метод

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
Результат Options

SetAutoSize() публичный Метод

Set to true to automatically resize the input field to accommodate dates in the current dateFormat.
public SetAutoSize ( bool autoSize ) : Options
autoSize bool
Результат Options

SetButtonImage() публичный Метод

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
Результат Options

SetButtonImageOnly() публичный Метод

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
Результат Options

SetButtonText() публичный Метод

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
Результат Options

SetCalculateWeek() публичный Метод

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
Результат Options

SetChangeMonth() публичный Метод

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
Результат Options

SetChangeYear() публичный Метод

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
Результат Options

SetCloseText() публичный Метод

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
Результат Options

SetConstrainInput() публичный Метод

When true entry in the input field is constrained to those characters allowed by the current dateFormat.
public SetConstrainInput ( bool constrainInput ) : Options
constrainInput bool
Результат Options

SetCurrentText() публичный Метод

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
Результат Options

SetDateFormat() публичный Метод

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
Результат Options

SetDayNames() публичный Метод

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
Результат Options

SetDayNames() публичный Метод

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
Результат Options

SetDayNamesMin() публичный Метод

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
Результат Options

SetDayNamesMin() публичный Метод

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
Результат Options

SetDayNamesShort() публичный Метод

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
Результат Options

SetDayNamesShort() публичный Метод

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
Результат Options

SetDefaultDate() публичный Метод

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
Результат Options

SetDefaultDate() публичный Метод

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
Результат Options

SetDefaultDate() публичный Метод

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
Результат Options

SetDisabled() публичный Метод

Disables (true) or enables (false) the control. Can be set when initialising (first creating) the control.
public SetDisabled ( bool disabled ) : Options
disabled bool
Результат Options

SetDuration() публичный Метод

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
Результат Options

SetDuration() публичный Метод

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
Результат Options

SetDuration() публичный Метод

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
Результат Options

SetFirstDay() публичный Метод

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
Результат Options

SetGotoCurrent() публичный Метод

When true the current day link moves to the currently selected date instead of today.
public SetGotoCurrent ( bool gotoCurrent ) : Options
gotoCurrent bool
Результат Options

SetHideIfNoPrevNext() публичный Метод

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
Результат Options

SetIsRTL() публичный Метод

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
Результат Options

SetMaxDate() публичный Метод

Set a maximum selectable date via a Date object.
public SetMaxDate ( System.DateTime maxDate ) : Options
maxDate System.DateTime
Результат Options

SetMaxDate() публичный Метод

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
Результат Options

SetMaxDate() публичный Метод

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
Результат Options

SetMinDate() публичный Метод

Set a minimum selectable date via a Date object.
public SetMinDate ( System.DateTime minDate ) : Options
minDate System.DateTime
Результат Options

SetMinDate() публичный Метод

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
Результат Options

SetMinDate() публичный Метод

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
Результат Options

SetMonthNames() публичный Метод

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
Результат Options

SetMonthNames() публичный Метод

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
Результат Options

SetMonthNamesShort() публичный Метод

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
Результат Options

SetMonthNamesShort() публичный Метод

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
Результат Options

SetNavigationAsDateFormat() публичный Метод

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
Результат Options

SetNextText() публичный Метод

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
Результат Options

SetNumberOfMonths() публичный Метод

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
Результат Options

SetNumberOfMonths() публичный Метод

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
Результат Options

SetPrevText() публичный Метод

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
Результат Options

SetSelectOtherMonths() публичный Метод

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
Результат Options

SetShortYearCutoff() публичный Метод

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
Результат Options

SetShortYearCutoff() публичный Метод

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
Результат Options

SetShowAnim() публичный Метод

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
Результат Options

SetShowAnim() публичный Метод

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
Результат Options

SetShowButtonPanel() публичный Метод

Whether to show the button panel
public SetShowButtonPanel ( bool showButtonPanel ) : Options
showButtonPanel bool
Результат Options

SetShowCurrentAtPos() публичный Метод

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
Результат Options

SetShowInline() публичный Метод

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 ///
Результат Options

SetShowMonthAfterYear() публичный Метод

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
Результат Options

SetShowOn() публичный Метод

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
Результат Options

SetShowOptions() публичный Метод

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
Результат Options

SetShowOtherMonths() публичный Метод

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
Результат Options

SetShowWeek() публичный Метод

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
Результат Options

SetStepMonths() публичный Метод

Set how many months to move when clicking the Previous/Next links
public SetStepMonths ( int stepMonths ) : Options
stepMonths int
Результат Options

SetWeekHeader() публичный Метод

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
Результат Options

SetYearRange() публичный Метод

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
Результат Options

SetYearSuffix() публичный Метод

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
Результат Options