Inheritance diagram for Anthem.ValidationSummary:
Public Member Functions | |
override void | RenderControl (HtmlTextWriter writer) |
Forces the server control to output content and trace information. | |
Protected Member Functions | |
override void | OnPreRender (EventArgs e) |
If ShowMessageBox=true, use Anthem.Manager to display the validation summary in a javascript alert. | |
override void | Render (HtmlTextWriter writer) |
Renders the server control wrapped in an additional element so that the element.innerHTML can be updated after a callback. | |
override void | OnLoad (EventArgs e) |
Raises the System.Web.UI.Control.Load event and registers the control with Anthem.Manager. | |
Properties | |
[Category("Anthem")][DefaultValue(true)][Description("Gets or sets a value which indicates whether the control should display the validation summary as a client-side alert.")] virtual bool | EnableCallBackScript [get, set] |
Gets or sets a value which indicates whether the control should display the validation summary as a client-side alert. | |
[Category("Anthem")][DefaultValue(false)][Description("True if this control should be updated after each callback.")] virtual bool | AutoUpdateAfterCallBack [get, set] |
Gets or sets a value indicating whether the control should be updated after each callback. Also see UpdateAfterCallBack. | |
[Browsable(false)][DefaultValue(false)] virtual bool | UpdateAfterCallBack [get, set] |
Gets or sets a value which indicates whether the control should be updated after the current callback. Also see AutoUpdateAfterCallBack. | |
override bool | Visible [get, set] |
Overrides the Visible property so that Anthem.Manager can track the visibility. |
Definition at line 13 of file ValidationSummary.cs.
override void Anthem.ValidationSummary.OnPreRender | ( | EventArgs | e | ) | [protected] |
If ShowMessageBox=true, use Anthem.Manager to display the validation summary in a javascript alert.
e |
Definition at line 45 of file ValidationSummary.cs.
override void Anthem.ValidationSummary.Render | ( | HtmlTextWriter | writer | ) | [protected] |
Renders the server control wrapped in an additional element so that the element.innerHTML can be updated after a callback.
Definition at line 112 of file ValidationSummary.cs.
override void Anthem.ValidationSummary.OnLoad | ( | EventArgs | e | ) | [protected] |
Raises the System.Web.UI.Control.Load event and registers the control with Anthem.Manager.
e | A System.EventArgs. |
Definition at line 201 of file ValidationSummary.cs.
override void Anthem.ValidationSummary.RenderControl | ( | HtmlTextWriter | writer | ) |
Forces the server control to output content and trace information.
Definition at line 211 of file ValidationSummary.cs.
[Category("Anthem")][DefaultValue(true)][Description("Gets or sets a value which indicates whether the control should display the validation summary as a client-side alert.")] virtual bool Anthem.ValidationSummary.EnableCallBackScript [get, set] |
Gets or sets a value which indicates whether the control should display the validation summary as a client-side alert.
true if the control should display the validation summary on the client after a callback; otherwise, false. The default is true.
Definition at line 25 of file ValidationSummary.cs.
[Category("Anthem")][DefaultValue(false)][Description("True if this control should be updated after each callback.")] virtual bool Anthem.ValidationSummary.AutoUpdateAfterCallBack [get, set] |
Gets or sets a value indicating whether the control should be updated after each callback. Also see UpdateAfterCallBack.
true if the the control should be updated; otherwise, false. The default is false.
<anthem:Label id="label" runat="server" AutoUpdateAfterCallBack="true" />
Implements Anthem.IUpdatableControl.
Definition at line 152 of file ValidationSummary.cs.
[Browsable(false)][DefaultValue(false)] virtual bool Anthem.ValidationSummary.UpdateAfterCallBack [get, set] |
Gets or sets a value which indicates whether the control should be updated after the current callback. Also see AutoUpdateAfterCallBack.
true if the the control should be updated; otherwise, false. The default is false.
this.Label = "Count = " + count; this.Label.UpdateAfterCallBack = true;
Implements Anthem.IUpdatableControl.
Definition at line 187 of file ValidationSummary.cs.
override bool Anthem.ValidationSummary.Visible [get, set] |
Overrides the Visible property so that Anthem.Manager can track the visibility.
true if the control is rendered on the client; otherwise false. The default is true.
Definition at line 226 of file ValidationSummary.cs.
Referenced by Anthem.ValidationSummary.Render().