[ Index ] |
|
Code source de PRADO 3.0.6 |
1 <?php 2 3 class Home extends TPage 4 { 5 public function onLoad($param) 6 { 7 $this->Table->GridLines='Both'; 8 9 $row=new TTableRow; 10 $this->Table->Rows[]=$row; 11 12 $cell=new TTableHeaderCell; 13 $cell->Text='Header 1'; 14 $row->Cells[]=$cell; 15 16 $cell=new TTableHeaderCell; 17 $cell->Text='Header 2'; 18 $row->Cells[]=$cell; 19 20 $row=new TTableRow; 21 $this->Table->Rows[]=$row; 22 23 $cell=new TTableCell; 24 $cell->Text='Cell 1'; 25 $row->Cells[]=$cell; 26 27 $cell=new TTableCell; 28 $cell->Text='Cell 2'; 29 $row->Cells[]=$cell; 30 } 31 } 32 33 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 21:07:04 2007 | par Balluche grâce à PHPXref 0.7 |