| 
0
 | 
     1 
 | 
| 
 | 
     2 
 | 
| 
 | 
     3 
 | 
| 
 | 
     4 /**
 | 
| 
 | 
     5  * Template object for the way in which DataTables holds information about
 | 
| 
 | 
     6  * search information for the global filter and individual column filters.
 | 
| 
 | 
     7  *  @namespace
 | 
| 
 | 
     8  */
 | 
| 
 | 
     9 DataTable.models.oSearch = {
 | 
| 
 | 
    10 	/**
 | 
| 
 | 
    11 	 * Flag to indicate if the filtering should be case insensitive or not
 | 
| 
 | 
    12 	 *  @type boolean
 | 
| 
 | 
    13 	 *  @default true
 | 
| 
 | 
    14 	 */
 | 
| 
 | 
    15 	"bCaseInsensitive": true,
 | 
| 
 | 
    16 
 | 
| 
 | 
    17 	/**
 | 
| 
 | 
    18 	 * Applied search term
 | 
| 
 | 
    19 	 *  @type string
 | 
| 
 | 
    20 	 *  @default <i>Empty string</i>
 | 
| 
 | 
    21 	 */
 | 
| 
 | 
    22 	"sSearch": "",
 | 
| 
 | 
    23 
 | 
| 
 | 
    24 	/**
 | 
| 
 | 
    25 	 * Flag to indicate if the search term should be interpreted as a
 | 
| 
 | 
    26 	 * regular expression (true) or not (false) and therefore and special
 | 
| 
 | 
    27 	 * regex characters escaped.
 | 
| 
 | 
    28 	 *  @type boolean
 | 
| 
 | 
    29 	 *  @default false
 | 
| 
 | 
    30 	 */
 | 
| 
 | 
    31 	"bRegex": false,
 | 
| 
 | 
    32 
 | 
| 
 | 
    33 	/**
 | 
| 
 | 
    34 	 * Flag to indicate if DataTables is to use its smart filtering or not.
 | 
| 
 | 
    35 	 *  @type boolean
 | 
| 
 | 
    36 	 *  @default true
 | 
| 
 | 
    37 	 */
 | 
| 
 | 
    38 	"bSmart": true
 | 
| 
 | 
    39 };
 | 
| 
 | 
    40 
 |