| Name | Description |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | AccessKey | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | AppendTo | Which element the menu should be appended to. Reference: http://jqueryui.com/demos/autocomplete/#appendTo |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | AutoFocus | If set to true the first item will be automatically focused. Reference: http://jqueryui.com/demos/autocomplete/#autoFocus |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | AutoPostBack | Gets or sets the value that indicates whether or not the control posts back to the server each time a user interacts with the control. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | CDNDependencyPaths | A string array value specifies all css/js references that wijmo control depends on. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | CDNPath | Content Delivery Network path. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | ClientIDMode | (Inherited from System.Web.UI.Control) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | CssClass | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | DataCategoryField | Gets or sets the name of the field from the data source to bind to the category. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | DataLabelField | Gets or sets the name of the field from the data source to bind to the label. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | DataMember | (Inherited from System.Web.UI.WebControls.DataBoundControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | DataSource | (Inherited from System.Web.UI.WebControls.BaseDataBoundControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | DataSourceID | (Inherited from System.Web.UI.WebControls.DataBoundControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | DataValueField | Gets or sets the name of the field from the data source to bind to the value. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Delay | The delay in milliseconds the Autocomplete waits after a keystroke to activate itself. A zero-delay makes sense for local data (more responsive), but can produce a lot of load for remote data, while being less responsive. Reference: http://jqueryui.com/demos/autocomplete/#delay |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | DisplayVisible | Gets or sets a value that indicates whether a server control is rendered as UI on the page. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | EnableCombinedJavaScripts | Enable JavaScripts files combined into one file. In order to combined enabled, you must register the WijmoHttpHandler in web.config. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Enabled | Gets or sets a value indicating whether the Web server control is enabled. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | EnableTheming | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | EnableViewState | (Inherited from System.Web.UI.Control) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Height | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | ID | (Inherited from System.Web.UI.Control) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | ItemType | (Inherited from System.Web.UI.WebControls.DataBoundControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | LoadOnDemand | Gets or sets the value that indicates whether or not Loads on demand is enabled. If it set to true, the auto complete will get suggestions from datasource you specified. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | MaxCount | Gets or sets the value that indicates the max number of callback results (you must specified the data source and set property "LoadOnDemand" to true) . |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | MaxLength | The attribute "maxlength" of textbox. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | MinLength | The minimum number of characters a user has to type before the Autocomplete activates. Zero is useful for local data with just a few items. Should be increased when there are a lot of items, where a single character would match a few thousand items. Reference: http://jqueryui.com/demos/autocomplete/#minLength |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientChange | The name of the function which will be called when the field is blurred, if the value has changed; ui.item refers to the selected item. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientClose | The name of the function which will be called when the list is hidden - doesn't have to occur together with a change. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientCreate | The name of the function which will be called when autocomplete is created. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientFocus | The name of the function which will be called before focus is moved to an item (not selecting), ui.item refers to the focused item. The default action of focus is to replace the text field's value with the value of the focused item, though only if the focus event was triggered by a keyboard interaction. Canceling this event prevents the value from being updated, but does not prevent the menu item from being focused. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientOpen | The name of the function which will be called when the suggestion menu is opened. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientResponse | The name of the function which will be called when a search completes, even if the menu will not be shown because there are no results or the Autocomplete is disabled. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientSearch | The name of the function which will be called Before a request (source-option) is started, after minLength and delay are met. Can be canceled (return false), then no request will be started and no items suggested. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | OnClientSelect | The name of the function which will be called when an item is selected from the menu; ui.item refers to the selected item. The default action of select is to replace the text field's value with the value of the selected item. Canceling this event prevents the value from being updated, but does not prevent the menu from closing. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Position | Identifies the position of the Autocomplete widget in relation to the associated input element. The "of" option defaults to the input element, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options. Reference: http://jqueryui.com/demos/autocomplete/#position |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | SelectMethod | (Inherited from System.Web.UI.WebControls.DataBoundControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | SkinID | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Source | Defines the data to use, must be specified. See Overview section for more details, and look at the various demos. Reference: http://jqueryui.com/demos/autocomplete/#source |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | SupportsDisabledAttribute | (Inherited from System.Web.UI.WebControls.BaseDataBoundControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | TabIndex | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Text | Gets or sets the text of autocomplete control. |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Theme | Name of the theme that will be used to style the widgets. Available embedded themes include: aristo, midnight, and ui-lightness. Note that only one theme can be used for the whole page at one time. Please make sure that all widget extenders have the same Theme value. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | ThemeSwatch | A value that indicates the theme swatch of the control, this property only works when WijmoControlMode property is Mobile. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | ToolTip | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | UseCDN | Determines whether the widget extender must load client resources from CDN (Content Delivery Network) path given by property CDNPath. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | ValidateRequestMode | (Inherited from System.Web.UI.Control) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | ViewStateMode | (Inherited from System.Web.UI.Control) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | Width | (Inherited from System.Web.UI.WebControls.WebControl) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | WijmoControlMode | A value that indicates mode of the control, whether it is a mobile or web control. Note that only one value can be used for the whole website or project. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |
![Public Property](template/packages/core-dotnet/images/publicProperty.png) | WijmoCssAdapter | Indicates the control applies the theme of JQuery UI or Bootstrap. (Inherited from C1.Web.Wijmo.Controls.Base.C1TargetDataBoundControlBase) |