Datei: /pages/tutorials/table/table-06.php
<?php class Table06 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Table with prededined style"; $this->render = new Table(); $this->render->setWidth(400); $this->render->setClass(Table::STYLE_MAIN); $header = $this->render->addRowColumns("Name", "Login", "Email"); $header->setHeaderClass(Table::STYLE_MAIN); $this->render->addRowColumns("Toto", "toto", "toto@toto.com"); $this->render->addRowColumns("Tata", "tata", "tata@tata.com"); $this->render->addRowColumns("Titi", "titi", "titi@titi.com"); $this->render->addRowColumns("Aaaa", "aaaa", "aaaa@aaaa.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); } } ?>
Zurück zum Tutorial der Komponente Table
|