| 
 File: /pages/tutorials/table/table-02.php  
<?phpclass Table02 extends Page {
 public function InitializeComponent() {
 parent::$PAGE_TITLE = "Tutorial : Complex Table";
 
 $this->render = new Table();
 $this->render->setBorder(1);
 
 $row1 = $this->render->addRowColumns("1-1+2", "1-3", "1-4");
 $row1->setColumnColspan(1, 2);
 
 $this->render->addRowColumns("2-1", "2-2", "2-3", "2-4");
 
 $row3 = $this->render->addRowColumns("3-1", "3-2",
 "3-3", "3-4");
 $row3->setColumnRowspan(3, 2);
 
 $this->render->addRowColumns("4-1", "4-2", "4-4");
 }
 }
 ?>
 Go back to tutorial of the componant Table |