Changes between Version 4 and Version 5 of AjaxList


Ignore:
Timestamp:
2010-09-01T21:50:32Z (14 years ago)
Author:
Serge Okon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AjaxList

    v4 v5  
    55The advantages of Ajax Listinclude quick list control creation, with features default like filters, sorting, pagination, state retention, and search. The amount of initial set up is usually minimal. As Ajax List is a single component, any list-related bug in iPeer can be traced down to this component, and fixed. There are some mechanisms to extend the list's functionality, but moderate to highly custom features could require code modifications to Ajax List.
    66
    7 == Requirements ==
    8 For best results, PHP 5.2 is recommended. PHP version bellow 5.2 should compile, and enable the PHP JSON plugin to achieve best performance.
     7=== Requirements ===
     8 * For best results, PHP 5.2 is recommended.
     9  * PHP version bellow 5.2 should compile, and enable the PHP JSON plugin to achieve best performance.
     10  * A much slower version of JSON parce is included with iPeer, and will be used if the above is missing.
     11  * A session component is required to keep track of a list' state. Ajax List uses CakePHP's Session component.
     12  * If possible, the client's browser should leave the cookies enabled, so that Ajax List can keep track of what page number the client is on.
    913
     14=== Files ===
     15Ajax List consists of 3 files.
     16 * \app\controllers\components\ajax_list.php
     17  * Holds the PHP side of Ajax List code.
     18  * Contains functions to initialize the list, creation of SQL queries, code query the database for the data to be listed, and state management.
     19 *