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 in AJAX

Tutorials

>

Tutorial Textbox

>

Tutorial : TextBox with form, callback method on change in AJAX


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

Tutorial : TextBox with form, callback method on change in AJAX:



Zurück zum Tutorial der Komponente Textbox



Quelltext

Quelltext


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

<?php
class Textbox07 extends Page {
    private 
$edt_text null;
    
    public function 
InitializeComponent() {
        
parent::$PAGE_TITLE "Tutorial : TextBox with form, 
                        callback method on change in AJAX"
;
        
        
$form = new Form($this);
        
        
$this->edt_text = new TextBox($form);
        
$this->edt_text->onChange("onChangeTextBox");
        
$this->edt_text->setAjaxEvent();
        
$this->edt_text->setStripTags("<b><i>");
        
        
$form->setContent($this->edt_text);
        
$this->render $form;
    }
    
    public function 
onChangeTextBox($sender) {
        
$dialog = new DialogBox("onChangeTextBox"
                    
$this->edt_text->getValue());
        
$this->addObject($dialog);
    }
}
?>


Zurück zum Tutorial der Komponente Textbox


Share

 


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