0
|
1 /*
|
|
2 * Placetable.js
|
|
3 *
|
|
4 * Copyright (c) 2013, Sebastian Kruse. All rights reserved.
|
|
5 *
|
|
6 * This library is free software; you can redistribute it and/or
|
|
7 * modify it under the terms of the GNU Lesser General Public
|
|
8 * License as published by the Free Software Foundation; either
|
|
9 * version 3 of the License, or (at your option) any later version.
|
|
10 *
|
|
11 * This library is distributed in the hope that it will be useful,
|
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14 * Lesser General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU Lesser General Public
|
|
17 * License along with this library; if not, write to the Free Software
|
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
19 * MA 02110-1301 USA
|
|
20 */
|
|
21
|
|
22 /**
|
|
23 * @class Placetable
|
|
24 * Implementation for a Placetable
|
|
25 * @author Sebastian Kruse (skruse@mpiwg-berlin.mpg.de)
|
|
26 *
|
|
27 * @param {HTML object} parent div to append the Placetable
|
|
28 */
|
|
29 function Placetable(parent) {
|
|
30
|
|
31 this.index;
|
|
32 this.placetable = this;
|
|
33
|
|
34 this.parent = parent;
|
|
35 this.options = parent.options;
|
|
36
|
|
37 this.initialize();
|
|
38 }
|
|
39
|
|
40 Placetable.prototype = {
|
|
41
|
|
42 remove : function() {
|
|
43 },
|
|
44
|
|
45 initialize : function() {
|
|
46 },
|
|
47
|
|
48 initPlacetable : function(dataSets) {
|
|
49 var placetable = this;
|
|
50
|
|
51
|
|
52 },
|
|
53
|
|
54 triggerHighlight : function(columnElement) {
|
|
55 },
|
|
56
|
|
57 triggerSelection : function(columnElement) {
|
|
58 },
|
|
59
|
|
60 deselection : function() {
|
|
61 },
|
|
62
|
|
63 filtering : function() {
|
|
64 },
|
|
65
|
|
66 inverseFiltering : function() {
|
|
67 },
|
|
68
|
|
69 triggerRefining : function() {
|
|
70 },
|
|
71
|
|
72 reset : function() {
|
|
73 },
|
|
74
|
|
75 show : function() {
|
|
76 },
|
|
77
|
|
78 hide : function() {
|
|
79 }
|
|
80 };
|