Gets or sets a value indicating whether to show the drop-down list when a document is loaded.

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

Syntax

C#
[LayoutAttribute(LayoutType.Behavior)]
[JsonAttribute(true, true, false)]
[DefaultValueAttribute(false)]
[BindableAttribute(false)]
[C1CategoryAttribute("Category.Behavior")]
public bool OpenDropDownOnLoad { get; set; }
Visual Basic (Declaration)
<LayoutAttribute(LayoutType.Behavior)> _
<JsonAttribute(True, True, False)> _
<DefaultValueAttribute(False)> _
<BindableAttribute(False)> _
<C1CategoryAttribute("Category.Behavior")> _
Public Property OpenDropDownOnLoad As Boolean
	Get
	Set

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" OpenDropDownOnLoad="true"></cc1:C1ComboBox>

See Also