annotate DataTables-1.9.4/media/src/model/model.column.js @ 16:3c697a0bc415 draft default tip

Uploaded
author saskia-hiltemann
date Wed, 06 Sep 2017 05:24:32 -0400
parents 3c160414da2e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3c160414da2e initial upload
shiltemann
parents:
diff changeset
1
3c160414da2e initial upload
shiltemann
parents:
diff changeset
2
3c160414da2e initial upload
shiltemann
parents:
diff changeset
3
3c160414da2e initial upload
shiltemann
parents:
diff changeset
4 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
5 * Template object for the column information object in DataTables. This object
3c160414da2e initial upload
shiltemann
parents:
diff changeset
6 * is held in the settings aoColumns array and contains all the information that
3c160414da2e initial upload
shiltemann
parents:
diff changeset
7 * DataTables needs about each individual column.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
8 *
3c160414da2e initial upload
shiltemann
parents:
diff changeset
9 * Note that this object is related to {@link DataTable.defaults.columns}
3c160414da2e initial upload
shiltemann
parents:
diff changeset
10 * but this one is the internal data store for DataTables's cache of columns.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
11 * It should NOT be manipulated outside of DataTables. Any configuration should
3c160414da2e initial upload
shiltemann
parents:
diff changeset
12 * be done through the initialisation options.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
13 * @namespace
3c160414da2e initial upload
shiltemann
parents:
diff changeset
14 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
15 DataTable.models.oColumn = {
3c160414da2e initial upload
shiltemann
parents:
diff changeset
16 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
17 * A list of the columns that sorting should occur on when this column
3c160414da2e initial upload
shiltemann
parents:
diff changeset
18 * is sorted. That this property is an array allows multi-column sorting
3c160414da2e initial upload
shiltemann
parents:
diff changeset
19 * to be defined for a column (for example first name / last name columns
3c160414da2e initial upload
shiltemann
parents:
diff changeset
20 * would benefit from this). The values are integers pointing to the
3c160414da2e initial upload
shiltemann
parents:
diff changeset
21 * columns to be sorted on (typically it will be a single integer pointing
3c160414da2e initial upload
shiltemann
parents:
diff changeset
22 * at itself, but that doesn't need to be the case).
3c160414da2e initial upload
shiltemann
parents:
diff changeset
23 * @type array
3c160414da2e initial upload
shiltemann
parents:
diff changeset
24 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
25 "aDataSort": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
26
3c160414da2e initial upload
shiltemann
parents:
diff changeset
27 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
28 * Define the sorting directions that are applied to the column, in sequence
3c160414da2e initial upload
shiltemann
parents:
diff changeset
29 * as the column is repeatedly sorted upon - i.e. the first value is used
3c160414da2e initial upload
shiltemann
parents:
diff changeset
30 * as the sorting direction when the column if first sorted (clicked on).
3c160414da2e initial upload
shiltemann
parents:
diff changeset
31 * Sort it again (click again) and it will move on to the next index.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
32 * Repeat until loop.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
33 * @type array
3c160414da2e initial upload
shiltemann
parents:
diff changeset
34 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
35 "asSorting": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
36
3c160414da2e initial upload
shiltemann
parents:
diff changeset
37 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
38 * Flag to indicate if the column is searchable, and thus should be included
3c160414da2e initial upload
shiltemann
parents:
diff changeset
39 * in the filtering or not.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
40 * @type boolean
3c160414da2e initial upload
shiltemann
parents:
diff changeset
41 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
42 "bSearchable": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
43
3c160414da2e initial upload
shiltemann
parents:
diff changeset
44 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
45 * Flag to indicate if the column is sortable or not.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
46 * @type boolean
3c160414da2e initial upload
shiltemann
parents:
diff changeset
47 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
48 "bSortable": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
49
3c160414da2e initial upload
shiltemann
parents:
diff changeset
50 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
51 * <code>Deprecated</code> When using fnRender, you have two options for what
3c160414da2e initial upload
shiltemann
parents:
diff changeset
52 * to do with the data, and this property serves as the switch. Firstly, you
3c160414da2e initial upload
shiltemann
parents:
diff changeset
53 * can have the sorting and filtering use the rendered value (true - default),
3c160414da2e initial upload
shiltemann
parents:
diff changeset
54 * or you can have the sorting and filtering us the original value (false).
3c160414da2e initial upload
shiltemann
parents:
diff changeset
55 *
3c160414da2e initial upload
shiltemann
parents:
diff changeset
56 * Please note that this option has now been deprecated and will be removed
3c160414da2e initial upload
shiltemann
parents:
diff changeset
57 * in the next version of DataTables. Please use mRender / mData rather than
3c160414da2e initial upload
shiltemann
parents:
diff changeset
58 * fnRender.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
59 * @type boolean
3c160414da2e initial upload
shiltemann
parents:
diff changeset
60 * @deprecated
3c160414da2e initial upload
shiltemann
parents:
diff changeset
61 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
62 "bUseRendered": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
63
3c160414da2e initial upload
shiltemann
parents:
diff changeset
64 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
65 * Flag to indicate if the column is currently visible in the table or not
3c160414da2e initial upload
shiltemann
parents:
diff changeset
66 * @type boolean
3c160414da2e initial upload
shiltemann
parents:
diff changeset
67 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
68 "bVisible": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
69
3c160414da2e initial upload
shiltemann
parents:
diff changeset
70 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
71 * Flag to indicate to the type detection method if the automatic type
3c160414da2e initial upload
shiltemann
parents:
diff changeset
72 * detection should be used, or if a column type (sType) has been specified
3c160414da2e initial upload
shiltemann
parents:
diff changeset
73 * @type boolean
3c160414da2e initial upload
shiltemann
parents:
diff changeset
74 * @default true
3c160414da2e initial upload
shiltemann
parents:
diff changeset
75 * @private
3c160414da2e initial upload
shiltemann
parents:
diff changeset
76 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
77 "_bAutoType": true,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
78
3c160414da2e initial upload
shiltemann
parents:
diff changeset
79 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
80 * Developer definable function that is called whenever a cell is created (Ajax source,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
81 * etc) or processed for input (DOM source). This can be used as a compliment to mRender
3c160414da2e initial upload
shiltemann
parents:
diff changeset
82 * allowing you to modify the DOM element (add background colour for example) when the
3c160414da2e initial upload
shiltemann
parents:
diff changeset
83 * element is available.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
84 * @type function
3c160414da2e initial upload
shiltemann
parents:
diff changeset
85 * @param {element} nTd The TD node that has been created
3c160414da2e initial upload
shiltemann
parents:
diff changeset
86 * @param {*} sData The Data for the cell
3c160414da2e initial upload
shiltemann
parents:
diff changeset
87 * @param {array|object} oData The data for the whole row
3c160414da2e initial upload
shiltemann
parents:
diff changeset
88 * @param {int} iRow The row index for the aoData data store
3c160414da2e initial upload
shiltemann
parents:
diff changeset
89 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
90 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
91 "fnCreatedCell": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
92
3c160414da2e initial upload
shiltemann
parents:
diff changeset
93 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
94 * Function to get data from a cell in a column. You should <b>never</b>
3c160414da2e initial upload
shiltemann
parents:
diff changeset
95 * access data directly through _aData internally in DataTables - always use
3c160414da2e initial upload
shiltemann
parents:
diff changeset
96 * the method attached to this property. It allows mData to function as
3c160414da2e initial upload
shiltemann
parents:
diff changeset
97 * required. This function is automatically assigned by the column
3c160414da2e initial upload
shiltemann
parents:
diff changeset
98 * initialisation method
3c160414da2e initial upload
shiltemann
parents:
diff changeset
99 * @type function
3c160414da2e initial upload
shiltemann
parents:
diff changeset
100 * @param {array|object} oData The data array/object for the array
3c160414da2e initial upload
shiltemann
parents:
diff changeset
101 * (i.e. aoData[]._aData)
3c160414da2e initial upload
shiltemann
parents:
diff changeset
102 * @param {string} sSpecific The specific data type you want to get -
3c160414da2e initial upload
shiltemann
parents:
diff changeset
103 * 'display', 'type' 'filter' 'sort'
3c160414da2e initial upload
shiltemann
parents:
diff changeset
104 * @returns {*} The data for the cell from the given row's data
3c160414da2e initial upload
shiltemann
parents:
diff changeset
105 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
106 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
107 "fnGetData": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
108
3c160414da2e initial upload
shiltemann
parents:
diff changeset
109 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
110 * <code>Deprecated</code> Custom display function that will be called for the
3c160414da2e initial upload
shiltemann
parents:
diff changeset
111 * display of each cell in this column.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
112 *
3c160414da2e initial upload
shiltemann
parents:
diff changeset
113 * Please note that this option has now been deprecated and will be removed
3c160414da2e initial upload
shiltemann
parents:
diff changeset
114 * in the next version of DataTables. Please use mRender / mData rather than
3c160414da2e initial upload
shiltemann
parents:
diff changeset
115 * fnRender.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
116 * @type function
3c160414da2e initial upload
shiltemann
parents:
diff changeset
117 * @param {object} o Object with the following parameters:
3c160414da2e initial upload
shiltemann
parents:
diff changeset
118 * @param {int} o.iDataRow The row in aoData
3c160414da2e initial upload
shiltemann
parents:
diff changeset
119 * @param {int} o.iDataColumn The column in question
3c160414da2e initial upload
shiltemann
parents:
diff changeset
120 * @param {array} o.aData The data for the row in question
3c160414da2e initial upload
shiltemann
parents:
diff changeset
121 * @param {object} o.oSettings The settings object for this DataTables instance
3c160414da2e initial upload
shiltemann
parents:
diff changeset
122 * @returns {string} The string you which to use in the display
3c160414da2e initial upload
shiltemann
parents:
diff changeset
123 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
124 * @deprecated
3c160414da2e initial upload
shiltemann
parents:
diff changeset
125 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
126 "fnRender": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
127
3c160414da2e initial upload
shiltemann
parents:
diff changeset
128 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
129 * Function to set data for a cell in the column. You should <b>never</b>
3c160414da2e initial upload
shiltemann
parents:
diff changeset
130 * set the data directly to _aData internally in DataTables - always use
3c160414da2e initial upload
shiltemann
parents:
diff changeset
131 * this method. It allows mData to function as required. This function
3c160414da2e initial upload
shiltemann
parents:
diff changeset
132 * is automatically assigned by the column initialisation method
3c160414da2e initial upload
shiltemann
parents:
diff changeset
133 * @type function
3c160414da2e initial upload
shiltemann
parents:
diff changeset
134 * @param {array|object} oData The data array/object for the array
3c160414da2e initial upload
shiltemann
parents:
diff changeset
135 * (i.e. aoData[]._aData)
3c160414da2e initial upload
shiltemann
parents:
diff changeset
136 * @param {*} sValue Value to set
3c160414da2e initial upload
shiltemann
parents:
diff changeset
137 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
138 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
139 "fnSetData": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
140
3c160414da2e initial upload
shiltemann
parents:
diff changeset
141 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
142 * Property to read the value for the cells in the column from the data
3c160414da2e initial upload
shiltemann
parents:
diff changeset
143 * source array / object. If null, then the default content is used, if a
3c160414da2e initial upload
shiltemann
parents:
diff changeset
144 * function is given then the return from the function is used.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
145 * @type function|int|string|null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
146 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
147 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
148 "mData": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
149
3c160414da2e initial upload
shiltemann
parents:
diff changeset
150 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
151 * Partner property to mData which is used (only when defined) to get
3c160414da2e initial upload
shiltemann
parents:
diff changeset
152 * the data - i.e. it is basically the same as mData, but without the
3c160414da2e initial upload
shiltemann
parents:
diff changeset
153 * 'set' option, and also the data fed to it is the result from mData.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
154 * This is the rendering method to match the data method of mData.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
155 * @type function|int|string|null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
156 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
157 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
158 "mRender": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
159
3c160414da2e initial upload
shiltemann
parents:
diff changeset
160 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
161 * Unique header TH/TD element for this column - this is what the sorting
3c160414da2e initial upload
shiltemann
parents:
diff changeset
162 * listener is attached to (if sorting is enabled.)
3c160414da2e initial upload
shiltemann
parents:
diff changeset
163 * @type node
3c160414da2e initial upload
shiltemann
parents:
diff changeset
164 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
165 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
166 "nTh": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
167
3c160414da2e initial upload
shiltemann
parents:
diff changeset
168 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
169 * Unique footer TH/TD element for this column (if there is one). Not used
3c160414da2e initial upload
shiltemann
parents:
diff changeset
170 * in DataTables as such, but can be used for plug-ins to reference the
3c160414da2e initial upload
shiltemann
parents:
diff changeset
171 * footer for each column.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
172 * @type node
3c160414da2e initial upload
shiltemann
parents:
diff changeset
173 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
174 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
175 "nTf": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
176
3c160414da2e initial upload
shiltemann
parents:
diff changeset
177 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
178 * The class to apply to all TD elements in the table's TBODY for the column
3c160414da2e initial upload
shiltemann
parents:
diff changeset
179 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
180 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
181 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
182 "sClass": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
183
3c160414da2e initial upload
shiltemann
parents:
diff changeset
184 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
185 * When DataTables calculates the column widths to assign to each column,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
186 * it finds the longest string in each column and then constructs a
3c160414da2e initial upload
shiltemann
parents:
diff changeset
187 * temporary table and reads the widths from that. The problem with this
3c160414da2e initial upload
shiltemann
parents:
diff changeset
188 * is that "mmm" is much wider then "iiii", but the latter is a longer
3c160414da2e initial upload
shiltemann
parents:
diff changeset
189 * string - thus the calculation can go wrong (doing it properly and putting
3c160414da2e initial upload
shiltemann
parents:
diff changeset
190 * it into an DOM object and measuring that is horribly(!) slow). Thus as
3c160414da2e initial upload
shiltemann
parents:
diff changeset
191 * a "work around" we provide this option. It will append its value to the
3c160414da2e initial upload
shiltemann
parents:
diff changeset
192 * text that is found to be the longest string for the column - i.e. padding.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
193 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
194 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
195 "sContentPadding": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
196
3c160414da2e initial upload
shiltemann
parents:
diff changeset
197 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
198 * Allows a default value to be given for a column's data, and will be used
3c160414da2e initial upload
shiltemann
parents:
diff changeset
199 * whenever a null data source is encountered (this can be because mData
3c160414da2e initial upload
shiltemann
parents:
diff changeset
200 * is set to null, or because the data source itself is null).
3c160414da2e initial upload
shiltemann
parents:
diff changeset
201 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
202 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
203 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
204 "sDefaultContent": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
205
3c160414da2e initial upload
shiltemann
parents:
diff changeset
206 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
207 * Name for the column, allowing reference to the column by name as well as
3c160414da2e initial upload
shiltemann
parents:
diff changeset
208 * by index (needs a lookup to work by name).
3c160414da2e initial upload
shiltemann
parents:
diff changeset
209 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
210 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
211 "sName": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
212
3c160414da2e initial upload
shiltemann
parents:
diff changeset
213 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
214 * Custom sorting data type - defines which of the available plug-ins in
3c160414da2e initial upload
shiltemann
parents:
diff changeset
215 * afnSortData the custom sorting will use - if any is defined.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
216 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
217 * @default std
3c160414da2e initial upload
shiltemann
parents:
diff changeset
218 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
219 "sSortDataType": 'std',
3c160414da2e initial upload
shiltemann
parents:
diff changeset
220
3c160414da2e initial upload
shiltemann
parents:
diff changeset
221 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
222 * Class to be applied to the header element when sorting on this column
3c160414da2e initial upload
shiltemann
parents:
diff changeset
223 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
224 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
225 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
226 "sSortingClass": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
227
3c160414da2e initial upload
shiltemann
parents:
diff changeset
228 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
229 * Class to be applied to the header element when sorting on this column -
3c160414da2e initial upload
shiltemann
parents:
diff changeset
230 * when jQuery UI theming is used.
3c160414da2e initial upload
shiltemann
parents:
diff changeset
231 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
232 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
233 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
234 "sSortingClassJUI": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
235
3c160414da2e initial upload
shiltemann
parents:
diff changeset
236 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
237 * Title of the column - what is seen in the TH element (nTh).
3c160414da2e initial upload
shiltemann
parents:
diff changeset
238 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
239 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
240 "sTitle": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
241
3c160414da2e initial upload
shiltemann
parents:
diff changeset
242 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
243 * Column sorting and filtering type
3c160414da2e initial upload
shiltemann
parents:
diff changeset
244 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
245 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
246 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
247 "sType": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
248
3c160414da2e initial upload
shiltemann
parents:
diff changeset
249 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
250 * Width of the column
3c160414da2e initial upload
shiltemann
parents:
diff changeset
251 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
252 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
253 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
254 "sWidth": null,
3c160414da2e initial upload
shiltemann
parents:
diff changeset
255
3c160414da2e initial upload
shiltemann
parents:
diff changeset
256 /**
3c160414da2e initial upload
shiltemann
parents:
diff changeset
257 * Width of the column when it was first "encountered"
3c160414da2e initial upload
shiltemann
parents:
diff changeset
258 * @type string
3c160414da2e initial upload
shiltemann
parents:
diff changeset
259 * @default null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
260 */
3c160414da2e initial upload
shiltemann
parents:
diff changeset
261 "sWidthOrig": null
3c160414da2e initial upload
shiltemann
parents:
diff changeset
262 };
3c160414da2e initial upload
shiltemann
parents:
diff changeset
263