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 : TextBox search 
with autocomplete and Analystics tracking

Tutorials

>

Tutorial Textbox

>

Tutorial : TextBox search with autocomplete and Analystics tracking


Textbox-10: Tutorial of the composant Textbox of the PHP FrameWork WebSite-PHP.

Tutorial : TextBox search with autocomplete and Analystics tracking:



Go back to tutorial of the componant Textbox



Source code

Source code


File: /pages/tutorials/textbox/textbox-10.php

<?php
class Textbox10 extends Page {
    public function 
InitializeComponent() {
        
parent::$PAGE_TITLE "Tutorial : TextBox search 
                                with autocomplete and Analystics tracking"
;
        
        
// List of values used is available on:
        // http://www.website-php.com/en/tutorials/database/database-05.html
                
        
$form = new Form($this);
        
        
// Create TextBox object
        
$search_text = new TextBox($form);
        
        
// Create AutoComplete object
        
$autocomplete = new AutoComplete(
                        new 
Url("xml/textbox-search.json"), 
                        
1$autocompete_event);
        
        
// To track the autocomplete event on Google Analytics                
        
$autocomplete->setTrackEvent("Tutorial""Textbox10""AutoComplete");
        
$autocomplete->setTrackPageView();
        
        
// Set autocomplete on the TextBox
        
$search_text->setAutoComplete($autocomplete);
        
$form->setContent($search_text);
        
        
$this->render $form;
    }
}
?>


Go back to tutorial of the componant Textbox


Share

 


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