PHP Classes

File: appz/type_ahead_db/suggestionprovider.js

Recommend this page to a friend!
  Classes of Guilherme Blanco   pAjax   appz/type_ahead_db/suggestionprovider.js   Download  
File: appz/type_ahead_db/suggestionprovider.js
Role: Auxiliary data
Content type: text/plain
Description: Suggestion Provider Script
Class: pAjax
Do RPC calls from the browser without page reloads
Author: By
Last change:
Date: 18 years ago
Size: 485 bytes
 

Contents

Class file image Download
function SuggestionProvider() { pAjax.apply(this); this.controller = null; } var _p = SuggestionProvider.prototype = new pAjax; _p.requestSuggestions = function (oAutoSuggestController) { this.controller = oAutoSuggestController; var req = this.prepare("suggest", pAjaxRequest.POST); req.setParam("text", this.controller.textbox.value); req.async(); } _p.onLoad = function () { this.controller.autoSuggest(this.getResponse()); }