-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery.rwdAccTables.js
285 lines (239 loc) · 9.04 KB
/
jquery.rwdAccTables.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
(function($) {
/**
* To count all the tables in the same page
* @type Number
*/
var nbTableResp = 1;
$.fn.rwdAccTables = function(options) {
var options = $.extend({}, $.fn.rwdAccTables.defaults, options);
return this.each(function() {
var self = $(this);
/**
* First DATA cell
* From this cell we will find the number of columns for the row headers
* And the number of rows for the columns headers
*
* This is the first TD (data) cell found after the first row
* of the table
*/
var firstCell = (self.find('tr:gt(0) td:eq(0)'));
if (!firstCell) {
/**
* No data cell OR no header line ...
* nothing to do for us here
*/
return;
}
/**
* Number of columns with headers before every data cells
*/
var nbColHeaders = 0,
/**
* Number of rows of headers above the data cells
*/
nbRowHeaders = 0,
/**
* Uniqid of our menu
*/
ide = nbTableResp,
/**
* Html obj of our list of checkboxes
*/
ul = false;
nbTableResp++;
/**
* Finding the number of columns for the row headers
*/
self.findNbColHeaders = function() {
/**
* The first should obviously have headings
*/
var colHeaders = firstCell.prevAll('th');
/**
* Thoose headings might be spanned across many cells ...
*/
colHeaders.each(function() {
if ($(this).attr('colspan') > 0) {
nbColHeaders += $(this).attr('colspan');
} else {
nbColHeaders++;
}
});
};
/**
* On init / windows resize
*/
self.update = function() {
/**
* Getting all checkbox
*/
var inputs = ul.find('input').get();
/**
* enabling them all to view all columns
*/
$(inputs).each(function() {
this.checked = true;
$(this).trigger('change');
});
/**
* Comparing to container width
*/
var pW = self.parent().width();
var inp = false;
while (self.width() > pW && inputs.length) {
/**
* While our table is larger than it's container
* we reduce the column list (starting from the right side)
*/
inp = inputs.pop();
inp.checked = false;
/**
* And we trigger the "change" action to really hide the columns
*/
$(inp).trigger('change');
}
ul.prev('a').html(options.text.replace('[NB]', ul.find('input:not(:checked)').length));
};
/**
* Finds out the number of header lines above data cells
*/
self.findNbRowHeaders = function() {
/**
* From the first "data" cell, we find it's containing TR
* And then count all previous TRs
*/
var colHeaders = firstCell.closest('tr').prevAll('tr');
nbRowHeaders = colHeaders.length;
};
self.toggleMenu = function(e) {
e.preventDefault();
ul.fadeToggle();
};
/**
* Initialisation
* @returns
*/
self.init = function() {
/**
* Needed calculations
*/
self.findNbColHeaders();
self.findNbRowHeaders();
/**
* Default HTML structure for the menu inserted before our
* table element
*/
self.before('<div class="tableHeaderToggle"><a href="#tableHeaderToggle_' + ide + '"></a><ul id="tableHeaderToggle_' + ide + '"></ul></div>');
/**
* Our list of checkboxes
*/
ul = $('#tableHeaderToggle_' + ide + '');
self.addClass('rwdAccTables_' + ide);
/**
* Hidden by default
*/
ul.hide();
ul.prev().click(self.toggleMenu);
/**
* All the header cells found ABOVE data celles
*/
var topHeaders = self.find('tr:lt(' + nbRowHeaders + ') th');
/**
* Adding each header to the checkbox list
*/
topHeaders.each(function() {
/**
* If this header cell has no data in it it's probably
* an empty useless cell
*/
if ($(this).text().trim() === "") {
return;
}
/**
* Looking and parsing all "headers" attribute for this cell
*/
var headers = $(this).attr('headers').trim().split(' ');
headers = headers.filter(function(v) {
return v !== '';
});
var obj = ul;
if (headers.length > 0) {
/**
* If this one has "headers" then it should not be inside
* the first UL (first level)
*
* So we are adding it to the appropriate LI
* (our first header) @todo OR LAST ?
*/
obj = $('#checkfor_' + ide + '_' + headers[0]);
robj = obj.find('ul');
if (robj.length === 0) {
/**
* If this LI doesn't have an UL inside ... we add it
*/
obj.append('<ul></ul>');
robj = obj.find('ul');
}
obj = robj;
}
/**
* And we append our checbox to the list !
*/
$(obj).append('<li id="checkfor_' + ide + '_' + $(this).attr('id') + '">\
<label \
for="respCols_' + ide + '_' + $(this).attr('id') + '" >\
<input \n\
id="respCols_' + ide + '_' + $(this).attr('id') + '"\
type="checkbox" class="respCols" \
name="respCols[]" \
value="' + $(this).attr('id') + '" \
checked="checked" /> \
' + $(this).text() + '</label></li>');
});
/**
* Each inputs has it's change function
*/
$('#tableHeaderToggle_' + ide + ' input').change(self.onChangeInput);
/**
* Updating when needed
*/
$(document).ready(self.update);
$(window).resize(self.update);
};
/**
* When an input is checked or unchecked
* ...
*/
self.onChangeInput = function() {
/**
* It's value contains the header name
*/
var val = $(this).val();
/**
* So we find the matching TR (with ID) and all the cells
* refering to this via HEADERS
*/
var objs = self.find('#' + val + ', [headers~="' + val + '"]');
/**
* Hidding / showing ...
*/
if ($(this).is(':checked')) {
objs.removeClass('hidden');
}
else {
objs.addClass('hidden');
}
};
self.init();
return this;
});
};
$.fn.rwdAccTables.defaults = {
text: "[NB] hidden columns ...",
divClass: "tableHeaderToggle"
};
}(jQuery));