Datei: /pages/tutorials/table/table-05.php
<?php class Table05 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Advance Table with more properties"; $this->render = new Table(); $this->render->setId("users_table_05"); $this->render->activateAdvanceTable(); $this->render->setWidth(500); $this->render->activateSort(1); $this->render->activateSearch(); $this->render->activatePagination(10); $this->render->activateAdvanceTableInfo(); $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"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); $this->render->addRowColumns("Zzzz", "zzzz", "zzzz@zzzz.com"); } } ?>
Zurück zum Tutorial der Komponente Table
|