C# 클래스 Fluqi.Widget.jDatePicker.Options

A set of properties to apply to a set of jQuery UI DatePicker.
Properties not yet supported:
상속: Core.Options
파일 보기 프로젝트 열기: toepoke/Fluqi 1 사용 예제들

공개 메소드들

메소드 설명
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