Gets or sets the text to show when the C1ComboBox text box is empty.

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)]
[NotifyParentPropertyAttribute(true)]
[C1CategoryAttribute("Category.Behavior")]
[LayoutAttribute(LayoutType.Behavior)]
[DefaultValueAttribute(null)]
public virtual string EmptyText { get; set; }
Visual Basic (Declaration)
<JsonAttribute(True, True, Nothing)> _
<NotifyParentPropertyAttribute(True)> _
<C1CategoryAttribute("Category.Behavior")> _
<LayoutAttribute(LayoutType.Behavior)> _
<DefaultValueAttribute(Nothing)> _
Public Overridable Property EmptyText As String
	Get
	Set

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" EmptyText="Please Select"></cc1:C1ComboBox>

See Also