source: main/trunk/model-sites-dev/cambridge-museum/collect/waikato-independent/pre-import/EditableDatabaseTable/src/jquery/datatables/controller/DataTableRequestParam.java@ 34493

Last change on this file since 34493 was 34493, checked in by davidb, 4 years ago

Base project for providing jquery/jquery-ui controlled interface to editing a database table

File size: 1.5 KB
Line 
1package jquery.datatables.controller;
2
3public class DataTableRequestParam {
4
5 /**
6 * Request sequence number sent by DataTable, same value must be returned in response
7 */
8 public String sEcho;
9
10 /**
11 * Text used for filtering
12 */
13 public String sSearchKeyword;
14
15 /**
16 * Is regular expression search used for filtering
17 */
18 public boolean bRegexKeyword;
19
20 /**
21 * Number of records that should be shown in table
22 */
23 public int iDisplayLength;
24
25 /**
26 * First record that should be shown(used for paging)
27 */
28 public int iDisplayStart;
29
30 /**
31 * Number of columns in table
32 */
33 public int iColumns;
34
35 /**
36 * Keywords for the individual column filtering is multi-keyword filtering is used
37 */
38 public String[] sSearch;
39
40 /**
41 * Array that defines what columns are searchable
42 */
43 public boolean[] bSearchable;
44
45 /**
46 * Array that defines what columns are sortable
47 */
48 public boolean[] bSortable;
49
50 public boolean[] bRegex;
51
52 /**
53 * Number of columns that are used in sorting
54 */
55 public int iSortingCols;
56
57 /**
58 * Directions for the column sorting "asc" or "desc"
59 */
60 public String[] sSortDir;
61
62 /**
63 * Order of sorting columns
64 */
65 public int[] iSortCol;
66
67 /**
68 * Comma separated list of column names
69 */
70 public String sColumns;
71}
Note: See TracBrowser for help on using the repository browser.