<?phpclass Checkbox02 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : 2 CheckBox with one disabled"; $this->render = new WSPObject(); $chk1 = new CheckBox($this); $chk1->setText("CheckBox 1")->setChecked(); $chk2 = new CheckBox($this); $chk2->setText("CheckBox 2")->disable(); $this->render->add($chk1, $chk2); }}?>