Datei: /pages/tutorials/table/table-04.php
<?php class Table04 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Advance Table"; $this->render = new Table(); $this->render->setId("users_table_04"); $this->render->activateAdvanceTable(); $this->render->setWidth(400); $header = $this->render->addRowColumns("Name", "Login", "Email"); $header->setHeaderClass(0); $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
|