Package DE_EPAGES::Presentation::API::TLE::GUIObject
Base class for GUI object that are based on a PageType.
Base |
DE_EPAGES::TLE::API::GUIObject |
Functions
addClass
Adds a css classes to a gui object element (accordion, input, tab).
Syntax |
#Input.addClass(ClassNames); |
Example |
#Input.addClass("class1 class2"); |
Input |
|
attributes
Adds attributes to a gui element (accordion, input, tab).
Syntax |
#Input.attributes(Attributes); |
Example |
#Input.attributes("id" = "GUIInput","name" = "Input1",); |
Input |
|
getHTML
Returns the html code of a gui type (accordion, ...)
Syntax |
$Content = $GUIObject->getHTML(); |
Return |
|
getVars
Fills and returns the final template variables.
Syntax |
$hVars = $GUIObject->getVars() |
Return |
|
new
create a new handler
Syntax |
$GUIObject = DE_EPAGES::Presentation::API::TLE::GUIObject->new($Processor); |
Input |
|
Return |
|
preferences
Sets preferences to a gui object element (accordion, input, tab)
Syntax |
#Input.preferences(Preferences); |
Example |
#Input.preferences("decimals" = 2); |
Input |
|
removeClass
Removes css classes of a gui object element (accordion, input, tab).
Syntax |
#Input.removeClass(ClassNames); |
Example |
$GUIObject->removeClass("class1"); |
Input |
|