Gets or sets the text to display if an error occurs during a callback to the server.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[DefaultValueAttribute("Request:{0} error. Message: {1}")]
[C1CategoryAttribute("Category.Behavior")]
[LayoutAttribute(LayoutType.Behavior)]
[BindableAttribute(false)]
[JsonAttribute(true, true, "Request:{0} error. Message: {1}")]
public virtual string ErrorText { get; set; }
Visual Basic
<DefaultValueAttribute("Request:{0} error. Message: {1}")> _
<C1CategoryAttribute("Category.Behavior")> _
<LayoutAttribute(LayoutType.Behavior)> _
<BindableAttribute(False)> _
<JsonAttribute(True, True, "Request:{0} error. Message: {1}")> _
Public Overridable Property ErrorText As String
	Get
	Set

Field Value

The default value is "Request:{0} error. Message: {1}".

Remarks

Value can contains two placeholders: request id that thrown an error and error message.

See Also