constructor __construct [line 1173]
method defaultBorderStyle [line 1546]
void defaultBorderStyle(
)
|
|
method defaultCharCase [line 1604]
method defaultDataField [line 1563]
method defaultDataSource [line 1579]
void defaultDataSource(
)
|
|
method defaultFilterInput [line 1168]
method defaultIsPassword [line 1614]
void defaultIsPassword(
)
|
|
method defaultjsOnSelect [line 1532]
void defaultjsOnSelect(
)
|
|
method defaultMaxLength [line 1626]
method defaultOnClick [line 1478]
method defaultOnDblClick [line 1503]
void defaultOnDblClick(
)
|
|
method defaultOnSubmit [line 1519]
method defaultReadOnly [line 1635]
method defaultTabOrder [line 1645]
method defaultTabStop [line 1657]
method defaultText [line 1674]
method dumpContents [line 1342]
method dumpFormItems [line 1386]
method dumpJavascript [line 1401]
method getCommonAttributes [line 1248]
string getCommonAttributes(
)
|
|
Get the common HTML tag attributes of a Edit control.
This is an internal method used to create the input control.
Tags:
method getCommonStyles [line 1295]
string getCommonStyles(
)
|
|
Get the common styles of a Edit control.
This is an internal function used to build the style for the field.
Tags:
method getFilterInput [line 1166]
boolean getFilterInput(
)
|
|
Determines if the control is going to filter input information sent by the user
Web applications take user input in the form of strings and then dump that information out, that can lead to security problems like cross-site scripting if you don't filter such information.
This property, if true, will filter out unwanted values, set it to false to prevent this behavior.
Overridden in child classes as:
- CustomMemo::getFilterInput()
- Determines if the control is going to filter input information sent by the user
method init [line 1208]
method loaded [line 1184]
method preinit [line 1191]
method readBorderStyle [line 1544]
Determines whether the edit control has a single line border around the client area.
Use this property to specify which kind of border the control is going to use. Controls can have a single border (1 pixel wide) or none.
Tags:
method readCharCase [line 1591]
Determines the case of the text within the edit control.
Note: When CharCase is set to ecLowerCase or ecUpperCase, the case of characters is converted as the user types them into the edit control. Changing the CharCase property to ecLowerCase or ecUpperCase changes the actual contents of the text, not just the appearance. Any case information is lost and can’t be recaptured by changing CharCase to ecNormal.
Tags:
method readDataField [line 1557]
DataField is the fieldname to be attached to the control.
This property allows you to show/edit information from a table column using this control. To make it work, you must also assign the Datasource property, which specifies the dataset that contain the fieldname to work on
method readDataSource [line 1574]
DataSource property allows you to link this control to a dataset containing rows of data.
To make it work, you must also assign DataField property with the name of the column you want to use
method readIsPassword [line 1612]
If IsPassword is true then all characters are displayed with a password character defined by the browser.
Note: The text is still in readable text in the HTML page!
method readjsOnSelect [line 1530]
JS Event occurs when text in the control was selected.
Use this event to provide custom behavior with then text in the control is selected
Tags:
method readMaxLength [line 1624]
Specifies the maximum number of characters the user can enter into the edit control.
A value of 0 indicates that there is no application-defined limit on the length.
method readOnClick [line 1466]
Occurs when the user clicks the control.
Use the OnClick event handler to respond when the user clicks the control.
Usually OnClick occurs when the user presses and releases the left mouse button with the mouse pointer over the control. This event can also occur when:
The user selects an item in a grid, outline, list, or combo box by pressing an arrow key.
The user presses Spacebar while a button or check box has focus.
The user presses Enter when the active form has a default button (specified by the Default property).
The user presses Esc when the active form has a cancel button (specified by the Cancel property).
Tags:
method readOnDblClick [line 1491]
Occurs when the user double-clicks the control.
Use this event to react when the user double click on the control, this event is usually fired after a set of other events, like mousedown and mouseup
Tags:
method readOnSubmit [line 1517]
Occurs when the form containing the control was submitted.
This event is fired when the form is submitted and the control is about to update itself with the information and changes made by the user in the browser
Tags:
method readReadOnly [line 1633]
Set the control to read-only mode. That way the user cannot enter or change the text of the edit control.
method readTabOrder [line 1643]
TabOrder indicates in which order controls are access when using the Tab key.
The value of the TabOrder can be between 0 and 32767.
method readTabStop [line 1655]
Enable or disable the TabOrder property.
The browser may still assign a TabOrder by itself internally. This cannot be controlled by HTML.
method readText [line 1667]
Contains the text string associated with the control.
Use this property to specify the text the control is going to store and show.
Overridden in child classes as:
- CustomMemo::readText()
- Text property allows read and write the contents of Lines in a string separated by LineSeparator.
method setFilterInput [line 1167]
method writeBorderStyle [line 1545]
void writeBorderStyle(
$value)
|
|
Parameters:
method writeCharCase [line 1592]
method writeDataField [line 1562]
void writeDataField(
$value)
|
|
DataField indicates which field of the DataSource is used to fill in the Text.
Parameters:
method writeDataSource [line 1575]
void writeDataSource(
$value)
|
|
Parameters:
method writeIsPassword [line 1613]
void writeIsPassword(
$value)
|
|
Parameters:
method writejsOnSelect [line 1531]
void writejsOnSelect(
$value)
|
|
Parameters:
method writeMaxLength [line 1625]
void writeMaxLength(
$value)
|
|
Parameters:
method writeOnClick [line 1474]
void writeOnClick(
mixed
$value)
|
|
Occurs when the user clicks the control.
Parameters:
method writeOnDblClick [line 1499]
void writeOnDblClick(
mixed
$value)
|
|
Occurs when the user double-clicks the control.
Parameters:
method writeOnSubmit [line 1518]
void writeOnSubmit(
$value)
|
|
Parameters:
method writeReadOnly [line 1634]
void writeReadOnly(
$value)
|
|
Parameters:
method writeTabOrder [line 1644]
void writeTabOrder(
$value)
|
|
Parameters:
method writeTabStop [line 1656]
void writeTabStop(
$value)
|
|
Parameters:
method writeText [line 1668]