mirror of https://github.com/xfarrow/phpxpress.git
Update README.md
This commit is contained in:
parent
c4f741ba87
commit
adc6089ba1
|
@ -23,18 +23,12 @@ $employees = array($employee1, $employee2, $employee3);
|
|||
|
||||
$table = new PhpXpress\Table;
|
||||
$table->setDataSource($employees);
|
||||
|
||||
//not required. If not specified it'll use objects' property names
|
||||
$table->setCustomCaptions(array("Name", "Surname", "Date of Birth", "Social Security Number"));
|
||||
|
||||
$table->setCustomCaptions(array("Name", "Surname", "Date of Birth", "Social Security Number")); //not required. If not specified it'll use objects' property names
|
||||
$table->addColumn("Extra");
|
||||
|
||||
$table->onValueDisplaying("onValueDisplaying");
|
||||
|
||||
$table->setStripedRows(true);
|
||||
$table->setBordered(true);
|
||||
$table->setHoverAnimation(true);
|
||||
|
||||
$table->draw();
|
||||
|
||||
function onValueDisplaying($caption, &$value, $row){
|
||||
|
|
Loading…
Reference in New Issue