<?phpclass Textbox06 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : TextBox with form, callback method on change"; $form = new Form($this); $edt_text = new TextBox($form); $edt_text->onChange("onChangeTextBox"); $edt_text->setStripTags(); $form->setContent($edt_text); $this->render = $form; } public function onChangeTextBox($sender) { $this->addObject(new JavaScript("alert('change');")); }}?>