Changes between Version 51 and Version 52 of AjaxList


Ignore:
Timestamp:
2010-09-08T15:36:09Z (14 years ago)
Author:
Serge Okon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AjaxList

    v51 v52  
    163163}}}
    164164==== Extra Filters ====
    165  
     165The extra filters variable can either be an array or a string. If it's a string, it's put in literally, and after the WHERE clause in an SQL statement, along with other filters in the list.
     166If the extra filters is an array, it is put in as
     167{{{WHERE key1=value1 AND key2=value2 AND key3=value3 AND etc...}}}
     168for an array like:
     169{{{$extraFilters = array(key1 => value1, key2 => value2, key3 => value3);}}}
     170
    166171 
    167172==== Join Tables ====