void dumpFlowLayout(
[array
$exclude = array()])
|
|
Dump a flow layout, basically, no layout at all
This type of layout simply dumps controls in their creation order, one after another.
Parameters:
void dumpLayoutContents(
[array
$exclude = array()])
|
|
Dump the layout contents depending on the layout type.
It checks the type it has to dump and calls the appropiate method, you can also exclude certain controls to be rendered by passing an array with the classnames of the components you don't want to get rendered
Parameters:
void dumpRELLayout(
[array
$exclude = array()])
|
|
Dump a fixed coordinate layout using relative coordinates
Dump all controls in the layout generating div tags using relative coordinates
Parameters:
void dumpXYLayout(
[array
$exclude = array()])
|
|
Dump a fixed coordinate layout using tables
Dump all controls in the layout generating tables and placing controls inside the right cells.
Parameters:
Type of this layout, it can be any value of the available ones:
FLOW_LAYOUT - Controls are rendered without any layout, that is, one after another
XY_LAYOUT - Controls are rendered in their fixed pos, but using HTML tables
ABS_XY_LAYOUT - Controls are rendered using absolute position
REL_XY_LAYOUT - Controls are rendered using relative positions
GRIDBAG_LAYOUT - Controls are rendered in a grid, you can set the Rows and Cols
ROW_LAYOUT - Controls are rendered in a single row, Cols property sets how many cells
COL_LAYOUT - Controls are rendered in a single column, Rows property sets how many cells
boolean getUsePixelTrans(
)
|
|
Specifies if the code generated should use a transparent pixel or not
To preserve compatibility with older browsers, tables must use a transparent pixel on empty cells to make the table behave correctly, on modern browsers you can set this property to false.