A newer version of this page is available.
Switch to the current version.
ASPxComboBox.ClientSideEvents Property
Gets an object that lists the client-side events specific to the ASPxComboBox.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v18.2.dll
Declaration
public ComboBoxClientSideEvents ClientSideEvents { get; }
Public ReadOnly Property ClientSideEvents As ComboBoxClientSideEvents
Property Value
Type | Description |
---|---|
ComboBoxClientSideEvents | A ComboBoxClientSideEvents object which allows assigning handlers to the client-side events available to the ASPxComboBox. |
Remarks
This property is a wrapper of the ComboBoxProperties.ClientSideEvents property.
Examples
The complete sample project is available in the DevExpress Code Central database at E55.
<dxe:ASPxComboBox ID="cbCombo" runat="server" Width="170px" ClientInstanceName="combo">
<ClientSideEvents SelectedIndexChanged="OnComboBoxSelectedIndexChanged" />
<Items>
<dxe:ListEditItem Text="Item #1" Value="0" />
<dxe:ListEditItem Text="Item #2" Value="1" />
<dxe:ListEditItem Text="Item #3" Value="2" />
</Items>
</dxe:ASPxComboBox>
See Also
Feedback