Bonjour,


Je dois améliorer un module pour l'entreprise où je travail.
Le tableau actuel permet à l'aide du plugin "TreeTable" de bien être trié et de gérer les enfants d'un <TR> .
Pour améliorer le rendu, je dois permettre lors d'un clic sur une ligne ( qui déroule bien ses enfants ) de dérouler aussi la lien correspondante.
Car le tableau est "coupé" en deux. Les deux parties ( haute & basse ) s'occupent des mêmes informations.
Je veux donc lors d'un clic sur un <tr> de la partie haute, dérouler le tr correspondant à la partie basse correspondante et vice/versa.
J'ai déjà réussit à simuler un "hover" sur la ligne correspondante, mais je n'arrive pas à comprendre comment gére le clic et le traiter.

Le code que j'ai appelant une fonction de TreeTable.js est le suivant :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
\$('#$id_table').treeTable( {
 
			clickableNodeNames: true,
			indent:15
			});
A l'heure actuelle, un clic sur un <TR> déroule bien si il a des enfants !

Voici le code de TreeTable.js :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/*
 
 * jQuery treeTable Plugin 2.3.0
 
 * http://ludo.cubicphuse.nl/jquery-plugins/treeTable/
 
 *
 
 * Copyright 2010, Ludo van den Boom
 
 * Dual licensed under the MIT or GPL Version 2 licenses.
 
 */
 
(function($) {
 
  // Helps to make options available to all functions
 
  // TODO: This gives problems when there are both expandable and non-expandable
 
  // trees on a page. The options shouldn't be global to all these instances!
 
  var options;
 
  var defaultPaddingLeft;
 
 
 
  $.fn.treeTable = function(opts) {
 
 
 
 
 
    options = $.extend({}, $.fn.treeTable.defaults, opts);
 
 
 
    return this.each(function() {
 
      $(this).addClass("treeTable").find("tbody tr").each(function() {
 
        // Initialize root nodes only if possible
 
        if(!options.expandable || $(this)[0].className.search(options.childPrefix) == -1) {
 
          // To optimize performance of indentation, I retrieve the padding-left
 
          // value of the first root node. This way I only have to call +css+ 
 
          // once.
 
          if (isNaN(defaultPaddingLeft)) {
 
            defaultPaddingLeft = parseInt($($(this).children("td")[options.treeColumn]).css('padding-left'), 10);
 
          }
 
 
 
          initialize($(this));
 
        } else if(options.initialState == "collapsed") {
 
          this.style.display = "none"; // Performance! $(this).hide() is slow...
 
        }
 
      });
 
    });
 
  };
 
 
 
  $.fn.treeTable.defaults = {
 
    childPrefix: "child-of-",
 
    clickableNodeNames: false,
 
    expandable: true,
 
    indent: 19,
 
    initialState: "collapsed",
 
    treeColumn: 0
 
  };
 
 
 
  // Recursively hide all node's children in a tree
 
  $.fn.collapse = function() {
 
    $(this).addClass("collapsed");
 
 
 
    childrenOf($(this)).each(function() {
 
      if(!$(this).hasClass("collapsed")) {
 
        $(this).collapse();
 
      }
 
 
 
      this.style.display = "none"; // Performance! $(this).hide() is slow...
 
    });
 
 
 
    return this;
 
  };
 
 
 
  // Recursively show all node's children in a tree
 
  $.fn.expand = function() {
 
    $(this).removeClass("collapsed").addClass("expanded");
 
 
 
    childrenOf($(this)).each(function() {
 
      initialize($(this));
 
 
 
      if($(this).is(".expanded.parent")) {
 
        $(this).expand();
 
      }
 
 
 
      // this.style.display = "table-row"; // Unfortunately this is not possible with IE :-(
 
      $(this).show();
 
    });
 
 
 
    return this;
 
  };
 
 
 
  // Reveal a node by expanding all ancestors
 
  $.fn.reveal = function() {
 
    $(ancestorsOf($(this)).reverse()).each(function() {
 
      initialize($(this));
 
      $(this).expand().show();
 
    });
 
 
 
    return this;
 
  };
 
 
 
  // Add an entire branch to +destination+
 
  $.fn.appendBranchTo = function(destination) {
 
    var node = $(this);
 
    var parent = parentOf(node);
 
 
 
    var ancestorNames = $.map(ancestorsOf($(destination)), function(a) { return a.id; });
 
 
 
    // Conditions:
 
    // 1: +node+ should not be inserted in a location in a branch if this would
 
    //    result in +node+ being an ancestor of itself.
 
    // 2: +node+ should not have a parent OR the destination should not be the
 
    //    same as +node+'s current parent (this last condition prevents +node+
 
    //    from being moved to the same location where it already is).
 
    // 3: +node+ should not be inserted as a child of +node+ itself.
 
    if($.inArray(node[0].id, ancestorNames) == -1 && (!parent || (destination.id != parent[0].id)) && destination.id != node[0].id) {
 
      indent(node, ancestorsOf(node).length * options.indent * -1); // Remove indentation
 
 
 
      if(parent) { node.removeClass(options.childPrefix + parent[0].id); }
 
 
 
      node.addClass(options.childPrefix + destination.id);
 
      move(node, destination); // Recursively move nodes to new location
 
      indent(node, ancestorsOf(node).length * options.indent);
 
    }
 
 
 
    return this;
 
  };
 
 
 
  // Add reverse() function from JS Arrays
 
  $.fn.reverse = function() {
 
    return this.pushStack(this.get().reverse(), arguments);
 
  };
 
 
 
  // Toggle an entire branch
 
  $.fn.toggleBranch = function() {
 
    if($(this).hasClass("collapsed")) {
 
      $(this).expand();
 
    } else {
 
      $(this).removeClass("expanded").collapse();
 
    }
 
 
 
    return this;
 
  };
 
 
 
  // === Private functions
 
 
 
  function ancestorsOf(node) {
 
    var ancestors = [];
 
    while(node = parentOf(node)) {
 
      ancestors[ancestors.length] = node[0];
 
    }
 
    return ancestors;
 
  };
 
 
 
  function childrenOf(node) {
 
    return $("table.treeTable tbody tr." + options.childPrefix + node[0].id);
 
  };
 
 
 
  function getPaddingLeft(node) {
 
    var paddingLeft = parseInt(node[0].style.paddingLeft, 10);
 
    return (isNaN(paddingLeft)) ? defaultPaddingLeft : paddingLeft;
 
  }
 
 
 
  function indent(node, value) {
 
    var cell = $(node.children("td")[options.treeColumn]);
 
    cell[0].style.paddingLeft = getPaddingLeft(cell) + value + "px";
 
 
 
    childrenOf(node).each(function() {
 
      indent($(this), value);
 
    });
 
  };
 
 
 
  function initialize(node) {
 
    if(!node.hasClass("initialized")) {
 
      node.addClass("initialized");
 
 
 
      var childNodes = childrenOf(node);
 
 
 
      if(!node.hasClass("parent") && childNodes.length > 0) {
 
        node.addClass("parent");
 
      }
 
 
 
      if(node.hasClass("parent")) {
 
        var cell = $(node.children("td")[options.treeColumn]);
 
        var padding = getPaddingLeft(cell) + options.indent;
 
 
 
        childNodes.each(function() {
 
          $(this).children("td")[options.treeColumn].style.paddingLeft = padding + "px";
 
        });
 
 
 
        if(options.expandable) {
 
          cell.prepend('<span style="margin-left: -' + options.indent + 'px; padding-left: ' + options.indent + 'px" class="expander"></span>');
 
          $(cell[0].firstChild).click(function() { node.toggleBranch(); });
 
 
 
          if(options.clickableNodeNames) {
 
            cell[0].style.cursor = "pointer";
 
            $(cell).click(function(e) {
 
              // Don't double-toggle if the click is on the existing expander icon
 
              if (e.target.className != 'expander') {
 
                node.toggleBranch();
 
              }
 
            });
 
          }
 
 
 
          // Check for a class set explicitly by the user, otherwise set the default class
 
          if(!(node.hasClass("expanded") || node.hasClass("collapsed"))) {
 
            node.addClass(options.initialState);
 
          }
 
 
 
          if(node.hasClass("expanded")) {
 
            node.expand();
 
          }
 
        }
 
      }
 
    }
 
  };
 
 
 
  function move(node, destination) {
 
    node.insertAfter(destination);
 
    childrenOf(node).reverse().each(function() { move($(this), node[0]); });
 
  };
 
 
 
  function parentOf(node) {
 
    var classNames = node[0].className.split(' ');
 
 
 
    for(key in classNames) {
 
      if(classNames[key].match(options.childPrefix)) {
 
        return $("#" + classNames[key].substring(9));
 
      }
 
    }
 
  };
 
})(jQuery);

Besoin éclaircissement Merci d'avance