Changes between Version 15 and Version 16 of AjaxList


Ignore:
Timestamp:
2010-09-02T18:06:57Z (14 years ago)
Author:
Serge Okon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AjaxList

    v15 v16  
    6464}}}
    6565{{{
    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     }
     66// Processes an Ajax request from the client.
     67function ajaxList() {
     68    // Set up the list
     69    $this->setUpAjaxList();
     70    // Process the request for data
     71    $this->AjaxList->asyncGet();
     72}
    7373}}}
    7474{{{
    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();
     75// Creates the initial list to display by the client
     76function list() {
     77    // Set up the basic static ajax list variables
     78    $this->setUpAjaxList();
    7979
    80         // Set the display list for render by the view
    81         $this->set('paramsForList', $this->AjaxList->getParamsForList());
    82     }
     80    // Set the display list for render by the view
     81    $this->set('paramsForList', $this->AjaxList->getParamsForList());
     82}
    8383}}}
    8484