Changes between Version 15 and Version 16 of AjaxList
- Timestamp:
- 2010-09-02T18:06:57Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AjaxList
v15 v16 64 64 }}} 65 65 {{{ 66 67 68 69 70 71 72 66 // Processes an Ajax request from the client. 67 function ajaxList() { 68 // Set up the list 69 $this->setUpAjaxList(); 70 // Process the request for data 71 $this->AjaxList->asyncGet(); 72 } 73 73 }}} 74 74 {{{ 75 76 77 78 75 // Creates the initial list to display by the client 76 function list() { 77 // Set up the basic static ajax list variables 78 $this->setUpAjaxList(); 79 79 80 81 82 80 // Set the display list for render by the view 81 $this->set('paramsForList', $this->AjaxList->getParamsForList()); 82 } 83 83 }}} 84 84