The client-side event that is fired when the selected index of the C1ComboBox is about to change.

Namespace:  C1.Web.UI.Controls.C1ComboBox
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
[JsonAttribute(true, true, null)]
[EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1ClientHandlerUITypeEditor, C1.Web.UI.Design.3", 
	typeof(UITypeEditor))]
[BindableAttribute(false)]
[C1CategoryAttribute("Category.ClientSideEvents")]
[LayoutAttribute(LayoutType.Misc)]
[DefaultValueAttribute("")]
public string OnClientSelectedIndexChanging { get; set; }
Visual Basic (Declaration)
<JsonAttribute(True, True, Nothing)> _
<EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1ClientHandlerUITypeEditor, C1.Web.UI.Design.3",  _
	GetType(UITypeEditor))> _
<BindableAttribute(False)> _
<C1CategoryAttribute("Category.ClientSideEvents")> _
<LayoutAttribute(LayoutType.Misc)> _
<DefaultValueAttribute("")> _
Public Property OnClientSelectedIndexChanging As String
	Get
	Set

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" OnClientSelectedIndexChanging="onSelectedIndexChangingHandler"></cc1:C1ComboBox>

See Also