[]
Defines a builder to configurate AutoCompleteBase<T>.
public abstract class AutoCompleteBaseBuilder<T, TControl, TBuilder> : ComboBoxBaseBuilder<T, TControl, TBuilder>, IHtmlString where TControl : AutoCompleteBase<T> where TBuilder : AutoCompleteBaseBuilder<T, TControl, TBuilder>
Name | Description |
---|---|
T | |
TControl | |
TBuilder |
Name | Description |
---|---|
AutoCompleteBaseBuilder(TControl) | Creates one AutoCompleteBaseBuilder<T, TControl, TBuilder> instance to configurate |
Name | Description |
---|---|
BeginsWithSearch(bool) | Configurates BeginsWithSearch. Sets a value that determines whether to search for items that begin with the given search term. The default value for this property is False, which causes the control to search for items that contain the given search terms. |
CssMatch(string) | Configurates CssMatch. Sets the name of the CSS class used to highlight any parts of the content that match the search terms. |
Delay(int) | Configurates Delay. Sets the delay, in milliseconds, between when a keystroke occurs and when the search is performed. |
ItemsSourceAction(string) | Configurates ItemsSourceAction. Sets the action name for data. |
ItemsSourceFunction(string) | Configurates ItemsSourceFunction. Sets a function that provides list items dynamically as the user types. |
MaxItems(int) | Configurates MaxItems. Sets the maximum number of items to display in the drop-down list. |
MinLength(int) | Configurates MinLength. Sets the minimum input length to trigger autocomplete suggestions. |
Name(string) | Configurates Name. Sets the name of the control element. |
SearchMemberPath(string) | Configurates SearchMemberPath. Sets a string containing a comma-separated list of properties to use when searching for items. |