public class AutoComplete : TextBox
| Member | Description | |
|---|---|---|
![]() |
Constructor | |
![]() |
AutoCompleteCallbackHandler | Method that handles the actual callback routing. public object AutoCompleteCallbackHandler(string term);
|
![]() |
RenderControl | public virtual void RenderControl(HtmlTextWriter writer);
|
![]() |
AutoFocus | Determines whether the selected item in the list will automatically be focused |
![]() |
CallbackHandler | An EventHandler that allows you to serve AJAX data to the AutoComplete client control. The handler receives a string input of the search term typed into the control and should return an array of objects. Each object should have at minimum 'label' and 'value' properties. |
![]() |
CssBasePath | The path to the base CSS Theme. Path is adjusted |
![]() |
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. |
![]() |
MinLength | The minimum length of the input string before autocomplete kicks in |
![]() |
OnClientSelection | The client selection handler called when a selection is made. The handler receives two parameter - a ssda |
![]() |
ServerUrl | Service Url to explicitly call to retrieve data. Not used if the OnServiceHandlerCallback event is set. Alternately you can implement the CallbackHandler delegate. |
![]() |
Theme | Theme applied to the base CSS url. Replaces /base/ with the theme selected |