Structures_DataGrid::addColumn
Вернуться к: Class Structures_DataGrid
Structures_DataGrid::addColumn
Synopsis
mixed Structures_DataGrid::addColumn ( &$column , string $position = 'last' , string $relativeTo = null , object $column )
This package is not documented yet.
Parameter
- &$column
- string $position
-
One of: "last", "first", "after" or "before" (default: "last")
- string $relativeTo
-
The name (label) or field name of the relative column, if $position is "after" or "before"
- object $column
-
The Structures_DataGrid_Column object (reference to)
Return value
returns PEAR_Error on failure, void otherwise
Throws
throws no exceptions thrown
Adding a simple column
<?php
$datagrid =& new Structures_DataGrid();
$column = new Structures_DataGrid_Column('Title', 'title', 'title', array('align' => 'center'), 'N/A', null);
$datagrid->addColumn($column);
?>
Note
This function can not be called statically.
Вернуться к: Class Structures_DataGrid