<?phpclass Textbox11 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Clearable TextBox (very useful for mobile device)"; // Create TextBox object $textbox = new TextBox($this); $textbox->setValue("Clearable TextBox"); $textbox->clearable(); $textbox->setFocus(); $this->render = $textbox; }}?>