Gets or sets the text to display if an error occurs during a call back to the server.
Namespace:
C1.Web.UI.Controls.C1ComboBoxAssembly:
C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)
Syntax
C# |
---|
[C1CategoryAttribute("Category.Behavior")]
[BindableAttribute(false)]
[DefaultValueAttribute("Request:{0} error. Message: {1}")]
[JsonAttribute(true, true, "Request:{0} error. Message: {1}")]
[LayoutAttribute(LayoutType.Behavior)]
public string ErrorText { get; set; } |
Visual Basic (Declaration) |
---|
<C1CategoryAttribute("Category.Behavior")> _
<BindableAttribute(False)> _
<DefaultValueAttribute("Request:{0} error. Message: {1}")> _
<JsonAttribute(True, True, "Request:{0} error. Message: {1}")> _
<LayoutAttribute(LayoutType.Behavior)> _
Public Property ErrorText As String
Get
Set |
Examples
Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" ErrorText="Error occurred!"></cc1:C1ComboBox> |
See Also