/**
  * Returns an description of the options available to modify by the designer for the code generator.
  *
  * @return array
  */
 public static function GetModelConnectorParams()
 {
     return array_merge(parent::GetModelConnectorParams(), array(new QModelConnectorParam(get_called_class(), 'Maximum', 'Meximum value allowed', QType::String), new QModelConnectorParam(get_called_class(), 'Minimum', 'Meximum value allowed', QType::String), new QModelConnectorParam(get_called_class(), 'Step', 'If value must be aligned on a step, the step amount', QType::String), new QModelConnectorParam(get_called_class(), 'LabelForLess', 'If value is too small, override the default error message', QType::String), new QModelConnectorParam(get_called_class(), 'LabelForGreater', 'If value is too big, override the default error message', QType::String), new QModelConnectorParam(get_called_class(), 'LabelForNotStepAligned', 'If value is not step aligned, override the default error message', QType::String)));
 }
 /**
  * If this control is attachable to a codegenerated control in a ModelConnector, this function will be
  * used by the ModelConnector designer dialog to display a list of options for the control.
  * @return QModelConnectorParam[]
  **/
 public static function GetModelConnectorParams()
 {
     return array_merge(parent::GetModelConnectorParams(), array(new QModelConnectorParam(get_called_class(), 'AltFormat', 'The dateFormat to be used for the altField option. This allows onedate format to be shown to the user for selection purposes, while adifferent format is actually sent behind the scenes. For a full listof the possible formats see the formatDate function', QType::String), new QModelConnectorParam(get_called_class(), 'AppendText', 'The text to display after each date field, e.g., to show the requiredformat.', QType::String), new QModelConnectorParam(get_called_class(), 'AutoSize', 'Set to true to automatically resize the input field to accommodatedates in the current dateFormat.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'OnBeforeShow', 'Type:Function( Element input, Object inst )Default:nullA function thattakes an input field and current datepicker instance and returns anoptions object to update the datepicker with. It is called just beforethe datepicker is displayed.', 'QJsClosure'), new QModelConnectorParam(get_called_class(), 'OnBeforeShowDay', 'Type:Function( Date date )Default:nullA function that takes a date asa parameter and must return an array with: 	* [0]: true/false indicating whether or not this date is selectable	* [1]: a CSS class name to add to the dates cell or \\"\\" for thedefault presentation	* [2]: an optional popup tooltip for this date The function is called for each day in the datepicker before it isdisplayed.', 'QJsClosure'), new QModelConnectorParam(get_called_class(), 'ButtonImage', 'A URL of an image to use to display the datepicker when the showOnoption is set to \\"button\\" or \\"both\\". If set, the buttonText optionbecomes the alt value and is not directly displayed.', QType::String), new QModelConnectorParam(get_called_class(), 'ButtonImageOnly', 'Whether the button image should be rendered by itself instead ofinside a button element. This option is only relevant if thebuttonImage option has also been set.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'ButtonText', 'The text to display on the trigger button. Use in conjunction with theshowOn option set to \\"button\\" or \\"both\\".', QType::String), new QModelConnectorParam(get_called_class(), 'OnCalculateWeek', 'Type:Function()Default:jQuery.datepicker.iso8601WeekA function tocalculate the week of the year for a given date. The defaultimplementation uses the ISO 8601 definition: weeks start on a Monday;the first week of the year contains the first Thursday of the year.', 'QJsClosure'), new QModelConnectorParam(get_called_class(), 'ChangeMonth', 'Whether the month should be rendered as a dropdown instead of text.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'ChangeYear', 'Whether the year should be rendered as a dropdown instead of text. Usethe yearRange option to control which years are made available forselection.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'CloseText', 'The text to display for the close link. Use the showButtonPanel optionto display this button.', QType::String), new QModelConnectorParam(get_called_class(), 'ConstrainInput', 'When true, entry in the input field is constrained to those charactersallowed by the current dateFormat option.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'CurrentText', 'The text to display for the current day link. Use the showButtonPaneloption to display this button.', QType::String), new QModelConnectorParam(get_called_class(), 'JqDateFormat', 'The format for parsed and displayed dates. For a full list of thepossible formats see the formatDate function.', QType::String), new QModelConnectorParam(get_called_class(), 'DayNames', 'The list of long day names, starting from Sunday, for use as requestedvia the dateFormat option.', QType::ArrayType), new QModelConnectorParam(get_called_class(), 'DayNamesMin', 'The list of minimised day names, starting from Sunday, for use ascolumn headers within the datepicker.', QType::ArrayType), new QModelConnectorParam(get_called_class(), 'DayNamesShort', 'The list of abbreviated day names, starting from Sunday, for use asrequested via the dateFormat option.', QType::ArrayType), new QModelConnectorParam(get_called_class(), 'Duration', 'Control the speed at which the datepicker appears, it may be a time inmilliseconds or a string representing one of the three predefinedspeeds (\\"slow\\", \\"normal\\", \\"fast\\").', 'QJsClosure'), new QModelConnectorParam(get_called_class(), 'FirstDay', 'Set the first day of the week: Sunday is 0, Monday is 1, etc.', QType::Integer), new QModelConnectorParam(get_called_class(), 'GotoCurrent', 'When true, the current day link moves to the currently selected dateinstead of today.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'HideIfNoPrevNext', 'Normally the previous and next links are disabled when not applicable(see the minDate and maxDate options). You can hide them altogether bysetting this attribute to true.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'IsRTL', 'Whether the current language is drawn from right to left.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'MonthNames', 'The list of full month names, for use as requested via the dateFormatoption.', QType::ArrayType), new QModelConnectorParam(get_called_class(), 'MonthNamesShort', 'The list of abbreviated month names, as used in the month header oneach datepicker and as requested via the dateFormat option.', QType::ArrayType), new QModelConnectorParam(get_called_class(), 'NavigationAsDateFormat', 'Whether the currentText, prevText and nextText options should beparsed as dates by the formatDate function, allowing them to displaythe target month names for example.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'NextText', 'The text to display for the next month link. With the standardThemeRoller styling, this value is replaced by an icon.', QType::String), new QModelConnectorParam(get_called_class(), 'OnChangeMonthYear', 'Type:Function( Integer year, Integer month, Object inst)Default:nullCalled when the datepicker moves to a new month and/oryear. The function receives the selected year, month (1-12), and thedatepicker instance as parameters. this refers to the associated inputfield.', 'QJsClosure'), new QModelConnectorParam(get_called_class(), 'OnClose', 'Type:Function( String dateText, Object inst )Default:nullCalled whenthe datepicker is closed, whether or not a date is selected. Thefunction receives the selected date as text (\\"\\" if none) and thedatepicker instance as parameters. this refers to the associated inputfield.', 'QJsClosure'), new QModelConnectorParam(get_called_class(), 'OnSelect', 'Type:Function( String dateText, Object inst )Default:nullCalled whenthe datepicker is selected. The function receives the selected date astext and the datepicker instance as parameters. this refers to theassociated input field.', 'QJsClosure'), new QModelConnectorParam(get_called_class(), 'PrevText', 'The text to display for the previous month link. With the standardThemeRoller styling, this value is replaced by an icon.', QType::String), new QModelConnectorParam(get_called_class(), 'SelectOtherMonths', 'Whether days in other months shown before or after the current monthare selectable. This only applies if the showOtherMonths option is setto true.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'ShowAnim', 'The name of the animation used to show and hide the datepicker. Use\\"show\\" (the default), \\"slideDown\\", \\"fadeIn\\", any of the jQuery UIeffects. Set to an empty string to disable animation.', QType::String), new QModelConnectorParam(get_called_class(), 'ShowButtonPanel', 'Whether to display a button pane underneath the calendar. The buttonpane contains two buttons, a Today button that links to the currentday, and a Done button that closes the datepicker. The buttons textcan be customized using the currentText and closeText optionsrespectively.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'ShowCurrentAtPos', 'When displaying multiple months via the numberOfMonths option, theshowCurrentAtPos option defines which position to display the currentmonth in.', QType::Integer), new QModelConnectorParam(get_called_class(), 'ShowMonthAfterYear', 'Whether to show the month after the year in the header.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'ShowOn', 'When the datepicker should appear. The datepicker can appear when thefield receives focus (\\"focus\\"), when a button is clicked (\\"button\\"),or when either event occurs (\\"both\\").', QType::String), new QModelConnectorParam(get_called_class(), 'ShowOtherMonths', 'Whether to display dates in other months (non-selectable) at the startor end of the current month. To make these days selectable use theselectOtherMonths option.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'ShowWeek', 'When true, a column is added to show the week of the year. ThecalculateWeek option determines how the week of the year iscalculated. You may also want to change the firstDay option.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'StepMonths', 'Set how many months to move when clicking the previous/next links.', QType::Integer), new QModelConnectorParam(get_called_class(), 'WeekHeader', 'The text to display for the week of the year column heading. Use theshowWeek option to display this column.', QType::String), new QModelConnectorParam(get_called_class(), 'YearRange', 'The range of years displayed in the year drop-down: either relative totodays year (\\"-nn:+nn\\"), relative to the currently selected year(\\"c-nn:c+nn\\"), absolute (\\"nnnn:nnnn\\"), or combinations of theseformats (\\"nnnn:-nn\\"). Note that this option only affects what appearsin the drop-down, to restrict which dates may be selected use theminDate and/or maxDate options.', QType::String), new QModelConnectorParam(get_called_class(), 'YearSuffix', 'Additional text to display after the year in the month headers.', QType::String)));
 }
 /**
  * If this control is attachable to a codegenerated control in a ModelConnector, this function will be
  * used by the ModelConnector designer dialog to display a list of options for the control.
  * @return QModelConnectorParam[]
  **/
 public static function GetModelConnectorParams()
 {
     return array_merge(parent::GetModelConnectorParams(), array(new QModelConnectorParam(get_called_class(), 'AutoFocus', 'If set to true the first item will automatically be focused when themenu is shown.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'Delay', 'The delay in milliseconds between when a keystroke occurs and when asearch is performed. A zero-delay makes sense for local data (moreresponsive), but can produce a lot of load for remote data, whilebeing less responsive.', QType::Integer), new QModelConnectorParam(get_called_class(), 'Disabled', 'Disables the autocomplete if set to true.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'MinLength', 'The minimum number of characters a user must type before a search isperformed. Zero is useful for local data with just a few items, but ahigher value should be used when a single character search could matcha few thousand items.', QType::Integer)));
 }
 /**
  * Returns an description of the options available to modify by the designer for the code generator.
  *
  * @return QModelConnectorParam[]
  */
 public static function GetModelConnectorParams()
 {
     return array_merge(parent::GetModelConnectorParams(), array(new QModelConnectorParam(get_called_class(), 'Delimiter', 'Default: , (comma)', QType::String), new QModelConnectorParam(get_called_class(), 'Enclosure', 'Default: " (double-quote)', QType::String), new QModelConnectorParam(get_called_class(), 'Escape', 'Default: \\ (backslash)', QType::String), new QModelConnectorParam(get_called_class(), 'MinItemCount', 'Minimum number of items required.', QType::Integer), new QModelConnectorParam(get_called_class(), 'MaxItemCount', 'Maximum number of items allowed.', QType::Integer)));
 }
 /**
  * @return array|QModelConnectorParam[]
  */
 public static function GetModelConnectorParams()
 {
     return array_merge(parent::GetModelConnectorParams(), array(new QModelConnectorParam(get_called_class(), 'DefaultAreaCode', '', QType::String)));
 }
 /**
  * If this control is attachable to a codegenerated control in a ModelConnector, this function will be
  * used by the ModelConnector designer dialog to display a list of options for the control.
  * @return QModelConnectorParam[]
  **/
 public static function GetModelConnectorParams()
 {
     return array_merge(parent::GetModelConnectorParams(), array(new QModelConnectorParam(get_called_class(), 'Culture', 'Sets the culture to use for parsing and formatting the value. If null,the currently set culture in Globalize is used, see Globalize docs foravailable cultures. Only relevant if the numberFormat option is set.Requires Globalize to be included.', QType::String), new QModelConnectorParam(get_called_class(), 'Disabled', 'Disables the spinner if set to true.', QType::Boolean), new QModelConnectorParam(get_called_class(), 'NumberFormat', 'Format of numbers passed to Globalize, if available. Most common are\\"n\\" for a decimal number and \\"C\\" for a currency value. Also see theculture option.', QType::String), new QModelConnectorParam(get_called_class(), 'Page', 'The number of steps to take when paging via the pageUp/pageDownmethods.', QType::Integer)));
 }