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

The "Methods" are called after the control has been initialised. If for instance you want to change the value of a property, or invoke "some" action on the control (e.g. "open" or "close") you call the "Method" rather than through the "Options" (as Options is about the initialisation of the control).
상속: Core.Methods
파일 보기 프로젝트 열기: toepoke/Fluqi

공개 메소드들

메소드 설명
Destroy ( ) : void

Remove the datepicker functionality completely. This will return the element back to its pre-init state.

Dialog ( System.DateTime date ) : void

Open a datepicker in a "dialog" box.

Dialog ( System.DateTime date, string onSelect ) : void

Open a datepicker in a "dialog" box.

Dialog ( System.DateTime date, string onSelect, Options settings ) : void

Open a datepicker in a "dialog" box.

Dialog ( System.DateTime date, string onSelect, int leftPosition, int topPosition, Options settings ) : void

Open a datepicker in a "dialog" box.

Dialog ( string date ) : void

Open a datepicker in a "dialog" box.

Dialog ( string date, string onSelect ) : void

Open a datepicker in a "dialog" box.

Dialog ( string date, string onSelect, Options settings ) : void

Open a datepicker in a "dialog" box.

Dialog ( string date, string onSelect, int leftPosition, int topPosition, Options settings ) : void

Open a datepicker in a "dialog" box.

Disable ( ) : void

Disable the datepicker.

Enable ( ) : void

Enable the datepicker.

GetAltField ( ) : void

Returns [in JavaScript] the current "altField" setting.

GetAltFormat ( ) : void

Returns [in JavaScript] the current "altFormat" setting.

GetAppendText ( ) : void

Returns [in JavaScript] the current "appendText" setting.

GetAutoSize ( ) : void

Returns [in JavaScript] the current "autoSize" setting.

GetButtonImage ( ) : void

Returns [in JavaScript] the current "buttonImage" setting.

GetButtonImageOnly ( ) : void

Returns [in JavaScript] the current "buttonImageOnly" setting.

GetButtonText ( ) : void

Returns [in JavaScript] the current "buttonText" setting.

GetCalculateWeek ( ) : void

Returns [in JavaScript] the current "calculateWeek" setting.

GetChangeMonth ( ) : void

Returns [in JavaScript] the current "changeMonth" setting.

GetChangeYear ( ) : void

Returns [in JavaScript] the current "changeYear" setting.

GetCloseText ( ) : void

Returns [in JavaScript] the current "closeText" setting.

GetConstrainInput ( ) : void

Returns [in JavaScript] the current "constraintInput" setting.

GetCurrentText ( ) : void

Returns [in JavaScript] the current "currentText" setting.

GetDate ( ) : void

Returns the current date for the datepicker or null if no date has been selected.

GetDateFormat ( ) : void

Returns [in JavaScript] the current "dateFormat" setting.

GetDayNames ( ) : void

Returns [in JavaScript] the current "dayNames" setting.

GetDayNamesMin ( ) : void

Returns [in JavaScript] the current "dayNamesMin" setting.

GetDayNamesShort ( ) : void

Returns [in JavaScript] the current "dayNamesShort" setting.

GetDefaultDate ( ) : void

Returns [in JavaScript] the current "defaultDate" setting.

GetDuration ( ) : void

Returns [in JavaScript] the current "duration" setting.

GetFirstDay ( ) : void

Returns [in JavaScript] the current "firstDay" setting.

GetGotoCurrent ( ) : void

Returns [in JavaScript] the current "gotoCurrent" setting.

GetHideIfNoPrevNext ( ) : void

Returns [in JavaScript] the current "hideIfNoPrevNext" setting.

GetIsRTL ( ) : void

Returns [in JavaScript] the current "isRTL" setting.

GetMaxDate ( ) : void

Returns [in JavaScript] the current "maxDate" setting.

GetMinDate ( ) : void

Returns [in JavaScript] the current "minDate" setting.

GetMonthNames ( ) : void

Returns [in JavaScript] the current "monthNames" setting.

GetMonthNamesShort ( ) : void

Returns [in JavaScript] the current "monthNamesShort" setting.

GetNavigationAsDateFormat ( ) : void

Returns [in JavaScript] the current "navigationAsDateFormat" setting.

GetNextText ( ) : void

Returns [in JavaScript] the current "nextText" setting.

GetNumberOfMonths ( ) : void

Returns [in JavaScript] the current "numberOfMonths" setting.

GetPrevText ( ) : void

Returns [in JavaScript] the current "prevText" setting.

GetSelectOtherMonths ( ) : void

Returns [in JavaScript] the current "selectOtherMonths" setting.

GetShortYearCutoff ( ) : void

Returns [in JavaScript] the current "shortYearCutoff" setting.

GetShowAnim ( ) : void

Returns [in JavaScript] the current "showAnim" setting.

GetShowButtonPanel ( ) : void

Returns [in JavaScript] the current "showButtonPanel" setting.

GetShowCurrentAtPos ( ) : void

Returns [in JavaScript] the current "showCurrentAtPos" setting.

GetShowMonthAfterYear ( ) : void

Returns [in JavaScript] the current "showMonthAfterYear" setting.

GetShowOn ( ) : void

Returns [in JavaScript] the current "showOn" setting.

GetShowOptions ( ) : void

If using one of the jQuery UI effects for showAnim, you can provide additional settings for that animation via this option.

GetShowOtherMonths ( ) : void

Returns [in JavaScript] the current "showOtherMonths" setting.

GetShowWeek ( ) : void

Returns [in JavaScript] the current "showWeek" setting.

GetStepMonths ( ) : void

Returns [in JavaScript] the current "stepMonths" setting.

GetWeekHeader ( ) : void

Returns [in JavaScript] the current "weekHeader" setting.

GetYearRange ( ) : void

Returns [in JavaScript] the current "yearRange" setting.

GetYearSuffix ( ) : void

Returns [in JavaScript] the current "yearSuffix" setting.

Hide ( ) : void

Close a previously opened date picker.

IsDisabled ( ) : void

Determines if the datepicker is disabled

Methods ( Fluqi.Widget.jDatePicker.DatePicker dp ) : System

Constructor

Refresh ( ) : void

Redraw a date picker, after having made some external modifications.

SetAltField ( string newValue ) : void

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.

SetAltField ( string newValue, bool inDoubleQuotes ) : void

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.

SetAltFieldJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetAltFormat ( string newValue ) : void

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

SetAltFormat ( string newValue, bool inDoubleQuotes ) : void

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

SetAltFormatJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetAppendText ( string newValue ) : void

The text to display after each date field, e.g. to show the required format.

SetAppendText ( string newValue, bool inDoubleQuotes ) : void

The text to display after each date field, e.g. to show the required format.

SetAppendTextJS ( string newValue ) : void

The text to display after each date field, e.g. to show the required format. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetAutoSize ( bool newValue ) : void

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

SetButtonImage ( string newValue ) : void

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

SetButtonImage ( string newValue, bool inDoubleQuotes ) : void

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

SetButtonImageJS ( string newValue ) : void

The URL for the popup button image. If set, buttonText becomes the alt value and is not directly displayed. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetButtonImageOnly ( bool newValue ) : void

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

SetButtonText ( string newValue ) : void

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

SetButtonText ( string newValue, bool inDoubleQuotes ) : void

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

SetButtonTextJS ( string newValue ) : void

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetCalculateWeek ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetCalculateWeekJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetChangeMonth ( bool newValue ) : void

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 newValue ) : void

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 newValue ) : void

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

SetCloseText ( string newValue, bool inDoubleQuotes ) : void

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

SetCloseTextJS ( string newValue ) : void

The text to display for the close link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetConstrainInput ( bool newValue ) : void

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

SetCurrentText ( string newValue ) : void

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

SetCurrentText ( string newValue, bool inDoubleQuotes ) : void

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

SetCurrentTextJS ( string newValue ) : void

The text to display for the current day link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetDate ( System.DateTime dt ) : void

Sets the current date for the datepicker. The new date is a .NET Date object which is converted the JavaScript equivalent (using the jQuery parseDate helper function).

SetDateFormat ( string newValue ) : void

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.

SetDateFormat ( string newValue, bool inDoubleQuotes ) : void

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.

SetDateFormatJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetDayNames ( ) : void

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 ( List newValues ) : void

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 ( ) : void

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 ( List newValues ) : void

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 ( ) : void

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 ( List newValues ) : void

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 newValue ) : void

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 ( int newValue ) : void

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 newValue ) : void

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 newValue, bool inDoubleQuotes ) : void

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.

SetDefaultDateJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetDuration ( Core speed ) : void

Control the speed at which the datepicker appears,

SetDuration ( int newValue ) : void

Control the speed at which the datepicker appears, Duration in milliseconds

SetDuration ( string newValue ) : void

Control the speed at which the datepicker appears, using one of the inbuilt constants of "slow", "normal" or "fast"

SetFirstDay ( int newValue ) : void

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

SetGotoCurrent ( bool newValue ) : void

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

SetHideIfNoPrevNext ( bool newValue ) : void

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 newValue ) : void

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

SetMaxDate ( System.DateTime newValue ) : void

Set a maximum selectable date via a Date object.

SetMaxDate ( int newValue ) : void

Set a maximum selectable date as a number of days from today (e.g. +7)

SetMaxDate ( string newValue ) : void

Set a maximum selectable date as 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.

SetMaxDateJS ( string newValue ) : void

Set a maximum selectable date as 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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetMinDate ( System.DateTime newValue ) : void

Set a minimum selectable date via a Date object.

SetMinDate ( int newValue ) : void

Set a minimum selectable date via number of days from today (e.g. +7).

SetMinDate ( string newValue ) : void

Set a minimum selectable date via 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 newValue, bool inDoubleQuotes ) : void

Set a minimum selectable date via 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.

SetMinDateJS ( string newValue ) : void

Set a minimum selectable date via 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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetMonthNames ( ) : void

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

SetMonthNames ( List newValues ) : void

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

SetMonthNamesShort ( ) : void

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 ( List newValues ) : void

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 newValue ) : void

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 newValue ) : void

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.

SetNextText ( string newValue, bool inDoubleQuotes ) : void

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.

SetNextTextJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetNumberOfMonths ( int newValue ) : void

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

SetNumberOfMonths ( int numRows, int numCols ) : void

Set how many months to show at once.

SetPrevText ( string newValue ) : void

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.

SetPrevText ( string newValue, bool inDoubleQuotes ) : void

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.

SetPrevTextJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetSelectOtherMonths ( bool newValue ) : void

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 newValue ) : void

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 newValue ) : void

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 newValue, bool inDoubleQuotes ) : void

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.

SetShortYearCutoffJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetShowAnim ( Core animation ) : void

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 newValue ) : void

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 newValue, bool inDoubleQuotes ) : void

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

SetShowAnimJS ( string newValue ) : void

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 This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetShowButtonPanel ( bool newValue ) : void

Whether to show the button panel.

SetShowCurrentAtPos ( int newValue ) : void

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

SetShowMonthAfterYear ( bool newValue ) : void

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

SetShowOnButton ( ) : void

Have the datepicker appear automatically when a button is clicked.

SetShowOnFocus ( ) : void

Have the datepicker appear automatically when the field receives focus

SetShowOnFocusOrButton ( ) : void

Have the datepicker appear automatically when the field receives focus or when a button is clicked ('button').

SetShowOptions ( string newValue ) : void

If using one of the jQuery UI effects for showAnim, you can provide additional settings for that animation via this option.

SetShowOtherMonths ( bool newValue ) : void

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 newValue ) : void

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 newValue ) : void

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

SetWeekHeader ( string newValue ) : void

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.

SetWeekHeader ( string newValue, bool inDoubleQuotes ) : void

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.

SetWeekHeaderJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetYearRange ( string newValue ) : void

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.

SetYearRange ( string newValue, bool inDoubleQuotes ) : void

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.

SetYearRange ( string lowerRange, string upperRange ) : void

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.

SetYearRangeJS ( string newValue ) : void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetYearSuffix ( string newValue ) : void

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

SetYearSuffix ( string newValue, bool inDoubleQuotes ) : void

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

SetYearSuffixJS ( string newValue ) : void

Additional text to display after the year in the month headers. This attribute is one of the regionalisation attributes. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

Show ( ) : void

Call up a previously attached date picker.

Widget ( ) : void

Returns the .ui-datepicker element.

비공개 메소드들

메소드 설명
DialogBuilder ( string date, string onSelect, int leftPosition, int topPosition, Options settings ) : void

As there are so many overrides for the In-Dialog option, the building of the option is abstracted out

메소드 상세

Destroy() 공개 메소드

Remove the datepicker functionality completely. This will return the element back to its pre-init state.
public Destroy ( ) : void
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( System.DateTime date ) : void
date System.DateTime Initial date for the date picker as Date.
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( System.DateTime date, string onSelect ) : void
date System.DateTime Initial date for the date picker as Date.
onSelect string /// A callback function when a date is selected. /// The function receives the date text and date picker instance as parameters. ///
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( System.DateTime date, string onSelect, Options settings ) : void
date System.DateTime Initial date for the date picker as Date.
onSelect string /// A callback function when a date is selected. /// The function receives the date text and date picker instance as parameters. ///
settings Options The new settings for the date picker.
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( System.DateTime date, string onSelect, int leftPosition, int topPosition, Options settings ) : void
date System.DateTime Initial date for the date picker as Date.
onSelect string A callback function when a date is selected. The function receives the date text and date picker instance as parameters.
leftPosition int The position of the left of the dialog
topPosition int The position of the top/left of the dialog
settings Options The new settings for the date picker.
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( string date ) : void
date string Initial date for the date picker as a string in the current date format.
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( string date, string onSelect ) : void
date string Initial date for the date picker as a string in the current date format.
onSelect string /// A callback function when a date is selected. /// The function receives the date text and date picker instance as parameters. ///
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( string date, string onSelect, Options settings ) : void
date string Initial date for the date picker as a string in the current date format.
onSelect string /// A callback function when a date is selected. /// The function receives the date text and date picker instance as parameters. ///
settings Options The new settings for the date picker.
리턴 void

Dialog() 공개 메소드

Open a datepicker in a "dialog" box.
public Dialog ( string date, string onSelect, int leftPosition, int topPosition, Options settings ) : void
date string Initial date for the date picker as a string in the current date format.
onSelect string /// A callback function when a date is selected. /// The function receives the date text and date picker instance as parameters. ///
leftPosition int The position of the left of the dialog
topPosition int The position of the top/left of the dialog
settings Options The new settings for the date picker.
리턴 void

Disable() 공개 메소드

Disable the datepicker.
public Disable ( ) : void
리턴 void

Enable() 공개 메소드

Enable the datepicker.
public Enable ( ) : void
리턴 void

GetAltField() 공개 메소드

Returns [in JavaScript] the current "altField" setting.
public GetAltField ( ) : void
리턴 void

GetAltFormat() 공개 메소드

Returns [in JavaScript] the current "altFormat" setting.
public GetAltFormat ( ) : void
리턴 void

GetAppendText() 공개 메소드

Returns [in JavaScript] the current "appendText" setting.
public GetAppendText ( ) : void
리턴 void

GetAutoSize() 공개 메소드

Returns [in JavaScript] the current "autoSize" setting.
public GetAutoSize ( ) : void
리턴 void

GetButtonImage() 공개 메소드

Returns [in JavaScript] the current "buttonImage" setting.
public GetButtonImage ( ) : void
리턴 void

GetButtonImageOnly() 공개 메소드

Returns [in JavaScript] the current "buttonImageOnly" setting.
public GetButtonImageOnly ( ) : void
리턴 void

GetButtonText() 공개 메소드

Returns [in JavaScript] the current "buttonText" setting.
public GetButtonText ( ) : void
리턴 void

GetCalculateWeek() 공개 메소드

Returns [in JavaScript] the current "calculateWeek" setting.
public GetCalculateWeek ( ) : void
리턴 void

GetChangeMonth() 공개 메소드

Returns [in JavaScript] the current "changeMonth" setting.
public GetChangeMonth ( ) : void
리턴 void

GetChangeYear() 공개 메소드

Returns [in JavaScript] the current "changeYear" setting.
public GetChangeYear ( ) : void
리턴 void

GetCloseText() 공개 메소드

Returns [in JavaScript] the current "closeText" setting.
public GetCloseText ( ) : void
리턴 void

GetConstrainInput() 공개 메소드

Returns [in JavaScript] the current "constraintInput" setting.
public GetConstrainInput ( ) : void
리턴 void

GetCurrentText() 공개 메소드

Returns [in JavaScript] the current "currentText" setting.
public GetCurrentText ( ) : void
리턴 void

GetDate() 공개 메소드

Returns the current date for the datepicker or null if no date has been selected.
public GetDate ( ) : void
리턴 void

GetDateFormat() 공개 메소드

Returns [in JavaScript] the current "dateFormat" setting.
public GetDateFormat ( ) : void
리턴 void

GetDayNames() 공개 메소드

Returns [in JavaScript] the current "dayNames" setting.
public GetDayNames ( ) : void
리턴 void

GetDayNamesMin() 공개 메소드

Returns [in JavaScript] the current "dayNamesMin" setting.
public GetDayNamesMin ( ) : void
리턴 void

GetDayNamesShort() 공개 메소드

Returns [in JavaScript] the current "dayNamesShort" setting.
public GetDayNamesShort ( ) : void
리턴 void

GetDefaultDate() 공개 메소드

Returns [in JavaScript] the current "defaultDate" setting.
public GetDefaultDate ( ) : void
리턴 void

GetDuration() 공개 메소드

Returns [in JavaScript] the current "duration" setting.
public GetDuration ( ) : void
리턴 void

GetFirstDay() 공개 메소드

Returns [in JavaScript] the current "firstDay" setting.
public GetFirstDay ( ) : void
리턴 void

GetGotoCurrent() 공개 메소드

Returns [in JavaScript] the current "gotoCurrent" setting.
public GetGotoCurrent ( ) : void
리턴 void

GetHideIfNoPrevNext() 공개 메소드

Returns [in JavaScript] the current "hideIfNoPrevNext" setting.
public GetHideIfNoPrevNext ( ) : void
리턴 void

GetIsRTL() 공개 메소드

Returns [in JavaScript] the current "isRTL" setting.
public GetIsRTL ( ) : void
리턴 void

GetMaxDate() 공개 메소드

Returns [in JavaScript] the current "maxDate" setting.
public GetMaxDate ( ) : void
리턴 void

GetMinDate() 공개 메소드

Returns [in JavaScript] the current "minDate" setting.
public GetMinDate ( ) : void
리턴 void

GetMonthNames() 공개 메소드

Returns [in JavaScript] the current "monthNames" setting.
public GetMonthNames ( ) : void
리턴 void

GetMonthNamesShort() 공개 메소드

Returns [in JavaScript] the current "monthNamesShort" setting.
public GetMonthNamesShort ( ) : void
리턴 void

GetNavigationAsDateFormat() 공개 메소드

Returns [in JavaScript] the current "navigationAsDateFormat" setting.
public GetNavigationAsDateFormat ( ) : void
리턴 void

GetNextText() 공개 메소드

Returns [in JavaScript] the current "nextText" setting.
public GetNextText ( ) : void
리턴 void

GetNumberOfMonths() 공개 메소드

Returns [in JavaScript] the current "numberOfMonths" setting.
public GetNumberOfMonths ( ) : void
리턴 void

GetPrevText() 공개 메소드

Returns [in JavaScript] the current "prevText" setting.
public GetPrevText ( ) : void
리턴 void

GetSelectOtherMonths() 공개 메소드

Returns [in JavaScript] the current "selectOtherMonths" setting.
public GetSelectOtherMonths ( ) : void
리턴 void

GetShortYearCutoff() 공개 메소드

Returns [in JavaScript] the current "shortYearCutoff" setting.
public GetShortYearCutoff ( ) : void
리턴 void

GetShowAnim() 공개 메소드

Returns [in JavaScript] the current "showAnim" setting.
public GetShowAnim ( ) : void
리턴 void

GetShowButtonPanel() 공개 메소드

Returns [in JavaScript] the current "showButtonPanel" setting.
public GetShowButtonPanel ( ) : void
리턴 void

GetShowCurrentAtPos() 공개 메소드

Returns [in JavaScript] the current "showCurrentAtPos" setting.
public GetShowCurrentAtPos ( ) : void
리턴 void

GetShowMonthAfterYear() 공개 메소드

Returns [in JavaScript] the current "showMonthAfterYear" setting.
public GetShowMonthAfterYear ( ) : void
리턴 void

GetShowOn() 공개 메소드

Returns [in JavaScript] the current "showOn" setting.
public GetShowOn ( ) : void
리턴 void

GetShowOptions() 공개 메소드

If using one of the jQuery UI effects for showAnim, you can provide additional settings for that animation via this option.
public GetShowOptions ( ) : void
리턴 void

GetShowOtherMonths() 공개 메소드

Returns [in JavaScript] the current "showOtherMonths" setting.
public GetShowOtherMonths ( ) : void
리턴 void

GetShowWeek() 공개 메소드

Returns [in JavaScript] the current "showWeek" setting.
public GetShowWeek ( ) : void
리턴 void

GetStepMonths() 공개 메소드

Returns [in JavaScript] the current "stepMonths" setting.
public GetStepMonths ( ) : void
리턴 void

GetWeekHeader() 공개 메소드

Returns [in JavaScript] the current "weekHeader" setting.
public GetWeekHeader ( ) : void
리턴 void

GetYearRange() 공개 메소드

Returns [in JavaScript] the current "yearRange" setting.
public GetYearRange ( ) : void
리턴 void

GetYearSuffix() 공개 메소드

Returns [in JavaScript] the current "yearSuffix" setting.
public GetYearSuffix ( ) : void
리턴 void

Hide() 공개 메소드

Close a previously opened date picker.
public Hide ( ) : void
리턴 void

IsDisabled() 공개 메소드

Determines if the datepicker is disabled
public IsDisabled ( ) : void
리턴 void

Methods() 공개 메소드

Constructor
public Methods ( Fluqi.Widget.jDatePicker.DatePicker dp ) : System
dp Fluqi.Widget.jDatePicker.DatePicker DatePicker object to call
리턴 System

Refresh() 공개 메소드

Redraw a date picker, after having made some external modifications.
public Refresh ( ) : void
리턴 void

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 newValue ) : void
newValue string New altField setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New altField setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetAltFieldJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetAltFieldJS ( string newValue ) : void
newValue string New altField setting
리턴 void

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 newValue ) : void
newValue string New altFormat setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New altFormat setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetAltFormatJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetAltFormatJS ( string newValue ) : void
newValue string New altFormat setting
리턴 void

SetAppendText() 공개 메소드

The text to display after each date field, e.g. to show the required format.
public SetAppendText ( string newValue ) : void
newValue string New appendText setting
리턴 void

SetAppendText() 공개 메소드

The text to display after each date field, e.g. to show the required format.
public SetAppendText ( string newValue, bool inDoubleQuotes ) : void
newValue string New appendText setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetAppendTextJS() 공개 메소드

The text to display after each date field, e.g. to show the required format. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetAppendTextJS ( string newValue ) : void
newValue string New appendText setting
리턴 void

SetAutoSize() 공개 메소드

Set to true to automatically resize the input field to accommodate dates in the current dateFormat.
public SetAutoSize ( bool newValue ) : void
newValue bool New autoSize setting
리턴 void

SetButtonImage() 공개 메소드

The URL for the popup button image. If set, buttonText becomes the alt value and is not directly displayed.
public SetButtonImage ( string newValue ) : void
newValue string New buttonImage setting
리턴 void

SetButtonImage() 공개 메소드

The URL for the popup button image. If set, buttonText becomes the alt value and is not directly displayed.
public SetButtonImage ( string newValue, bool inDoubleQuotes ) : void
newValue string New buttonImage setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetButtonImageJS() 공개 메소드

The URL for the popup button image. If set, buttonText becomes the alt value and is not directly displayed. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetButtonImageJS ( string newValue ) : void
newValue string New buttonImage setting
리턴 void

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 newValue ) : void
newValue bool New buttonImageOnly setting
리턴 void

SetButtonText() 공개 메소드

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'.
public SetButtonText ( string newValue ) : void
newValue string New buttonText setting
리턴 void

SetButtonText() 공개 메소드

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'.
public SetButtonText ( string newValue, bool inDoubleQuotes ) : void
newValue string New buttonText setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetButtonTextJS() 공개 메소드

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetButtonTextJS ( string newValue ) : void
newValue string New buttonText setting
리턴 void

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetCalculateWeek ( string newValue ) : void
newValue string New calculateWeek setting
리턴 void

SetCalculateWeekJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetCalculateWeekJS ( string newValue ) : void
newValue string New calculateWeek setting
리턴 void

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 newValue ) : void
newValue bool New changeMonth setting
리턴 void

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 newValue ) : void
newValue bool New changeYear setting
리턴 void

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 newValue ) : void
newValue string New closeText setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New closeText setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetCloseTextJS() 공개 메소드

The text to display for the close link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetCloseTextJS ( string newValue ) : void
newValue string New closeText setting
리턴 void

SetConstrainInput() 공개 메소드

When true entry in the input field is constrained to those characters allowed by the current dateFormat.
public SetConstrainInput ( bool newValue ) : void
newValue bool New constraintInput setting
리턴 void

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 newValue ) : void
newValue string New currentText setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New currentText setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetCurrentTextJS() 공개 메소드

The text to display for the current day link. This attribute is one of the regionalisation attributes. Use the showButtonPanel to display this button. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetCurrentTextJS ( string newValue ) : void
newValue string New currentText setting
리턴 void

SetDate() 공개 메소드

Sets the current date for the datepicker. The new date is a .NET Date object which is converted the JavaScript equivalent (using the jQuery parseDate helper function).
public SetDate ( System.DateTime dt ) : void
dt System.DateTime
리턴 void

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 newValue ) : void
newValue string New dateFormat setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New dateFormat setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetDateFormatJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetDateFormatJS ( string newValue ) : void
newValue string New dateFormat setting
리턴 void

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 ( ) : void
리턴 void

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 newValues ) : void
newValues List New dayNames setting
리턴 void

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 ( ) : void
리턴 void

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 newValues ) : void
newValues List New dayNamesMin setting
리턴 void

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 ( ) : void
리턴 void

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 newValues ) : void
newValues List New dayNamesShort setting
리턴 void

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 ( System.DateTime newValue ) : void
newValue System.DateTime New defaultDate setting
리턴 void

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 newValue ) : void
newValue int New defaultDate setting
리턴 void

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 newValue ) : void
newValue string New defaultDate setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New defaultDate setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetDefaultDateJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetDefaultDateJS ( string newValue ) : void
newValue string New defaultDate setting
리턴 void

SetDuration() 공개 메소드

Control the speed at which the datepicker appears,
public SetDuration ( Core speed ) : void
speed Core One of the three predefined speeds ("slow", "normal", "fast").
리턴 void

SetDuration() 공개 메소드

Control the speed at which the datepicker appears, Duration in milliseconds
public SetDuration ( int newValue ) : void
newValue int Duration in milliseconds
리턴 void

SetDuration() 공개 메소드

Control the speed at which the datepicker appears, using one of the inbuilt constants of "slow", "normal" or "fast"
public SetDuration ( string newValue ) : void
newValue string Duration in milliseconds
리턴 void

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 newValue ) : void
newValue int New firstDay setting
리턴 void

SetGotoCurrent() 공개 메소드

When true the current day link moves to the currently selected date instead of today.
public SetGotoCurrent ( bool newValue ) : void
newValue bool New gotoCurrent setting
리턴 void

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 newValue ) : void
newValue bool New hideIfNoPrevNext setting
리턴 void

SetIsRTL() 공개 메소드

True if the current language is drawn from right to left. This attribute is one of the regionalisation attributes.
public SetIsRTL ( bool newValue ) : void
newValue bool New isRTL setting
리턴 void

SetMaxDate() 공개 메소드

Set a maximum selectable date via a Date object.
public SetMaxDate ( System.DateTime newValue ) : void
newValue System.DateTime New maxDate setting
리턴 void

SetMaxDate() 공개 메소드

Set a maximum selectable date as a number of days from today (e.g. +7)
public SetMaxDate ( int newValue ) : void
newValue int New maxDate setting
리턴 void

SetMaxDate() 공개 메소드

Set a maximum selectable date as 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 newValue ) : void
newValue string New maxDate setting
리턴 void

SetMaxDateJS() 공개 메소드

Set a maximum selectable date as 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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetMaxDateJS ( string newValue ) : void
newValue string New maxDate setting
리턴 void

SetMinDate() 공개 메소드

Set a minimum selectable date via a Date object.
public SetMinDate ( System.DateTime newValue ) : void
newValue System.DateTime New minDate setting
리턴 void

SetMinDate() 공개 메소드

Set a minimum selectable date via number of days from today (e.g. +7).
public SetMinDate ( int newValue ) : void
newValue int New minDate setting
리턴 void

SetMinDate() 공개 메소드

Set a minimum selectable date via 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 newValue ) : void
newValue string New minDate setting
리턴 void

SetMinDate() 공개 메소드

Set a minimum selectable date via 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 newValue, bool inDoubleQuotes ) : void
newValue string New minDate setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetMinDateJS() 공개 메소드

Set a minimum selectable date via 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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetMinDateJS ( string newValue ) : void
newValue string New minDate setting
리턴 void

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 ( ) : void
리턴 void

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 newValues ) : void
newValues List New monthNames setting
리턴 void

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 ( ) : void
리턴 void

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 newValues ) : void
newValues List New monthNamesShort setting
리턴 void

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 newValue ) : void
newValue bool New navigationAsDateFormat setting
리턴 void

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 newValue ) : void
newValue string New nextText setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New nextText setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetNextTextJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetNextTextJS ( string newValue ) : void
newValue string New nextText setting
리턴 void

SetNumberOfMonths() 공개 메소드

Set how many months to show at once. or can be a two-element array to define the number of rows and columns to display
public SetNumberOfMonths ( int newValue ) : void
newValue int New numberOfMonths setting
리턴 void

SetNumberOfMonths() 공개 메소드

Set how many months to show at once.
public SetNumberOfMonths ( int numRows, int numCols ) : void
numRows int Number of rows
numCols int Number of columns
리턴 void

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 newValue ) : void
newValue string New prevText setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New prevText setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetPrevTextJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetPrevTextJS ( string newValue ) : void
newValue string New prevText setting
리턴 void

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 newValue ) : void
newValue bool New selectOtherMonths setting
리턴 void

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 newValue ) : void
newValue int New shortYearCutoff setting
리턴 void

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 newValue ) : void
newValue string New shortYearCutoff setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New shortYearCutoff setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetShortYearCutoffJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetShortYearCutoffJS ( string newValue ) : void
newValue string New shortYearCutoff setting
리턴 void

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 animation ) : void
animation Core New showAnim setting
리턴 void

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 newValue ) : void
newValue string New showAnim setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New showAnim setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetShowAnimJS() 공개 메소드

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 This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetShowAnimJS ( string newValue ) : void
newValue string New showAnim setting
리턴 void

SetShowButtonPanel() 공개 메소드

Whether to show the button panel.
public SetShowButtonPanel ( bool newValue ) : void
newValue bool New showButtonPanel setting
리턴 void

SetShowCurrentAtPos() 공개 메소드

Specify where in a multi-month display the current month shows, starting from 0 at the top/left
public SetShowCurrentAtPos ( int newValue ) : void
newValue int New showCurrentAtPos setting
리턴 void

SetShowMonthAfterYear() 공개 메소드

Whether to show the month after the year in the header. This attribute is one of the regionalisation attributes.
public SetShowMonthAfterYear ( bool newValue ) : void
newValue bool New showMonthAfterYear setting
리턴 void

SetShowOnButton() 공개 메소드

Have the datepicker appear automatically when a button is clicked.
public SetShowOnButton ( ) : void
리턴 void

SetShowOnFocus() 공개 메소드

Have the datepicker appear automatically when the field receives focus
public SetShowOnFocus ( ) : void
리턴 void

SetShowOnFocusOrButton() 공개 메소드

Have the datepicker appear automatically when the field receives focus or when a button is clicked ('button').
public SetShowOnFocusOrButton ( ) : void
리턴 void

SetShowOptions() 공개 메소드

If using one of the jQuery UI effects for showAnim, you can provide additional settings for that animation via this option.
public SetShowOptions ( string newValue ) : void
newValue string New showOptions setting
리턴 void

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 newValue ) : void
newValue bool New showOtherMonths setting
리턴 void

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 newValue ) : void
newValue bool New showWeek setting
리턴 void

SetStepMonths() 공개 메소드

Set how many months to move when clicking the Previous/Next links
public SetStepMonths ( int newValue ) : void
newValue int New stepMonths setting
리턴 void

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 newValue ) : void
newValue string New weekHeader setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New weekHeader setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetWeekHeaderJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetWeekHeaderJS ( string newValue ) : void
newValue string New weekHeader setting
리턴 void

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 newValue ) : void
newValue string New yearRange setting
리턴 void

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 newValue, bool inDoubleQuotes ) : void
newValue string New yearRange setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

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 lowerRange, string upperRange ) : void
lowerRange string Lower range for year dropdown
upperRange string Upper range for year dropdown
리턴 void

SetYearRangeJS() 공개 메소드

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. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetYearRangeJS ( string newValue ) : void
newValue string New yearRange setting
리턴 void

SetYearSuffix() 공개 메소드

Additional text to display after the year in the month headers. This attribute is one of the regionalisation attributes.
public SetYearSuffix ( string newValue ) : void
newValue string New yearSuffix setting
리턴 void

SetYearSuffix() 공개 메소드

Additional text to display after the year in the month headers. This attribute is one of the regionalisation attributes.
public SetYearSuffix ( string newValue, bool inDoubleQuotes ) : void
newValue string New yearSuffix setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetYearSuffixJS() 공개 메소드

Additional text to display after the year in the month headers. This attribute is one of the regionalisation attributes. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetYearSuffixJS ( string newValue ) : void
newValue string New yearSuffix setting
리턴 void

Show() 공개 메소드

Call up a previously attached date picker.
public Show ( ) : void
리턴 void

Widget() 공개 메소드

Returns the .ui-datepicker element.
public Widget ( ) : void
리턴 void