WebSite-PHP Framework PHP
Multi language
Simple Ajax mode
No HTML, no JavaScript
URL rewriting
Mail sending
Sitemap - RSS - Web service
Download WebSite-PHP FrameWork now
 


Loading
 


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

Tutorials

>

Tutorial Combobox

>

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


Combobox-07: Tutorial of the composant Combobox of the PHP FrameWork WebSite-PHP.

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




Go back to tutorial of the componant Combobox



Source code

Source code


File: /pages/tutorials/combobox/combobox-07.php

<?php
class Combobox07 extends Page {
    private 
$combo null;
    
    public function 
InitializeComponent() {
        
parent::$PAGE_TITLE "Tutorial : ComboBox with form, 
                            callback method on change in AJAX"
;
        
        
$form = new Form($this);
        
        
$this->combo = new ComboBox($form);
        
$this->combo->addItem("value 1""value 1");
        
$this->combo->addItem("value 2""value 2");
        
$this->combo->addItem("value 3""value 3");
        
$this->combo->onChange("onChangeCombo");
        
$this->combo->setAjaxEvent();
        
$this->combo->setStripTags();
        
        
$form->setContent($this->combo);
        
$this->render $form;
        
$this->render = new WSPObject($this->render"<br/>");
    }
    
    public function 
onChangeCombo($sender) {
        
$dialog = new DialogBox("onChangeCombo"
                        
$this->combo->getValue());
        
$this->addObject($dialog);
    }
}
?>


Go back to tutorial of the componant Combobox


Share

 


Copyright © 2009-2024 WebSite-PHP Framework PHP
Home Documentation Download Quick start Tutorials Wiki Issue Tracker