Gets or sets a value that determines whether to show the Trigger button. The Trigger button is the arrow in the C1ComboBox that you click to expand the drop-down list.

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

Syntax

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

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" ShowTrigger="false"></cc1:C1ComboBox>

See Also