C# Class Spring.Web.UI.Controls.Calendar

Inheritance: System.Web.UI.WebControls.WebControl, IPostBackDataHandler
Datei anzeigen Open project: spring-projects/spring-net

Private Properties

Property Type Description
RenderButton void
RenderSetupScript void
RenderTextBox void

Public Methods

Method Description
LoadPostData ( string postDataKey, NameValueCollection postCollection ) : bool

Loads postback data into the control.

RaisePostDataChangedEvent ( ) : void

Raises the SelectionChanged event.

Protected Methods

Method Description
OnDateChanged ( EventArgs e ) : void

The method that is called on postback if the date has changed.

OnPreRender ( EventArgs e ) : void

Registers necessary scripts and stylesheet.

Render ( System.Web.UI.HtmlTextWriter writer ) : void

Renders a hidden input field that stores the value for the radio button group.

Private Methods

Method Description
RenderButton ( HtmlTextWriter writer ) : void
RenderSetupScript ( HtmlTextWriter writer ) : void
RenderTextBox ( HtmlTextWriter writer ) : void

Method Details

LoadPostData() public method

Loads postback data into the control.
public LoadPostData ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string /// The key that should be used to retrieve data. ///
postCollection System.Collections.Specialized.NameValueCollection The postback data collection.
return bool

OnDateChanged() protected method

The method that is called on postback if the date has changed.
protected OnDateChanged ( EventArgs e ) : void
e System.EventArgs /// The event argument (empty and unused). ///
return void

OnPreRender() protected method

Registers necessary scripts and stylesheet.
protected OnPreRender ( EventArgs e ) : void
e System.EventArgs /// An object that contains the event data. ///
return void

RaisePostDataChangedEvent() public method

Raises the SelectionChanged event.
public RaisePostDataChangedEvent ( ) : void
return void

Render() protected method

Renders a hidden input field that stores the value for the radio button group.
protected Render ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter /// to use for rendering. ///
return void