KaxComboBoxEnableLoadOnDemand Property |
Gets or sets a value indicating whether the combobox should issue a callback to
the server whenever end-users change the text of the combo (keypress, paste,
etc).
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic bool EnableLoadOnDemand { get; set; }
Public Property EnableLoadOnDemand As Boolean
Get
Set
public:
property bool EnableLoadOnDemand {
bool get ();
void set (bool value);
}
member EnableLoadOnDemand : bool with get, set
Property Value
Type:
Boolean
Remarks
In Load On Demand mode, the combobox starts a callback after a specified amount of
time (see
ItemRequestTimeout) and calls the
server-side
ItemsRequested event. Depending on the
value of the event arguments, you can add new items to the combobox object and the
items will be propagated to the browser after the request.
See Also