<?phpclass Colorpicker01 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Simple ColorPicker"; $this->render = new ColorPicker($this); }}?>
<?phpclass Colorpicker02 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : ColorPicker with init color"; $this->render = new ColorPicker($this); $this->render->setValue("FF3300"); }}?>
<?phpclass Colorpicker03 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : ColorPicker force # and upper case"; $this->render = new ColorPicker($this); $this->render->setValue("5BFF4F"); $this->render->hash(true); $this->render->caps(true); }}?>