ASPxClientComboBox.EndUpdate Method
Re-enables editor render operations after a call to the ASPxClientComboBox.BeginUpdate method and forces an immediate re-rendering.
Declaration
EndUpdate(): void
Remarks
The combobox editor allows a sequence of operations that affect its appearance and/or functionality to be performed on the client side, without having the editor render itself after each modification (for instance, multiple items within the editor can be dynamically added/removed at the same time). To do this, the code performing sequential changes to the editor must be enclosed within calls to the ASPxClientComboBox.BeginUpdate and EndUpdate methods. This improves performance, and avoids unnecessary render operations on the client side.
See Also