WebSite-PHP Framework PHP
Mehrsprachig
Einfacher Ajax Modus
Kein HTML, kein JavaScript
URL Rewriting
Mails senden
Sitemap - RSS - Web service
Laden Sie WebSite-PHP FrameWork jetzt herunter
 


Loading
 


Tutorial : TextBox with form, 
callback method on change

Tutorials

>

Tutorial Textbox

>

Tutorial : TextBox with form, callback method on change


Textbox-06: Tutorial der Komponente Textbox vom PHP FrameWork WebSite-PHP.

Tutorial : TextBox with form, callback method on change:



Zurück zum Tutorial der Komponente Textbox



Quelltext

Quelltext


Datei: /pages/tutorials/textbox/textbox-06.php

<?php
class 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');"));
    }
}
?>


Zurück zum Tutorial der Komponente Textbox


Share

 


Copyright © 2009-2024 WebSite-PHP Framework PHP
Start Dokumentation Herunterladen Schnellstart Tutorials Wiki Issue Tracker