C# Class Adf.Web.UI.CharacterFilteringTextBox

Base class for all System.Web.UI.WebControls.TextBoxs that use a filter to enable a subset of the keys.
Inheritance: System.Web.UI.WebControls.TextBox
Datei anzeigen Open project: NLADP/ADF

Private Properties

Property Type Description
OnPreRender void

Protected Methods

Method Description
CreateJavascriptFunction ( ) : void

Creates a JavaScript function.

This method can be implemented by descendants and it must call the RegisterClientScriptFunction(string innerCode) function. Overriding this method is only needed, when special javascript is needed, that goes behond the standard protected virtual boolean properties.

RegisterClientScriptFunction ( string innerCode ) : void

Creates default code for the descendants and puts the specified special JavaScript code (innerCode) from the descendants inside the created function.

Private Methods

Method Description
OnPreRender ( EventArgs e ) : void

Method Details

CreateJavascriptFunction() protected method

Creates a JavaScript function.
This method can be implemented by descendants and it must call the RegisterClientScriptFunction(string innerCode) function. Overriding this method is only needed, when special javascript is needed, that goes behond the standard protected virtual boolean properties.
protected CreateJavascriptFunction ( ) : void
return void

RegisterClientScriptFunction() protected method

Creates default code for the descendants and puts the specified special JavaScript code (innerCode) from the descendants inside the created function.
protected RegisterClientScriptFunction ( string innerCode ) : void
innerCode string The descendant dependent JavaScript code.
return void