Having trouble getting help?
Contact Support
Contact Support
Server Side Events
27 Apr 20181 minute to read
The following are the server side events available in the ComboBox control.
Event | Event Description | Event Description |
---|---|---|
OnValueSelect | Occurs when ComboBox Active list changes. |
Event Argument contains the following parameters,
|
In the ASPX page, add the ComboBox control to configure the ComboBox events.
<ej:ComboBox ID="selectColor" runat="server" Width="100%" DataTextField="text" OnValueSelect="selectColor_ValueSelect" Placeholder="Choose a color"></ej:ComboBox>
The code Define ComboBox ValueSelect server side event in behind.
protected void selectColor_ValueSelect(object sender, Syncfusion.JavaScript.Web.ComboBoxEventArgs e)
{
}