Blame view

controllets/dataset-table-controllet/dataset-table-controllet.html 24.7 KB
ad18ef24   Andrea Petta   plugin update
1
2
3
4
5
6
7
8
9
10
11
  <link rel="import" href="../../bower_components/polymer/polymer.html" />
  
  <link rel="import" href="../../bower_components/paper-material/paper-material.html" />
  <link rel="import" href="../../bower_components/paper-input/paper-input.html">
  <link rel="import" href="../../bower_components/paper-icon-button/paper-icon-button.html">
  <link rel="import" href="../../bower_components/iron-icons/iron-icons.html">
  <link rel="import" href="../../bower_components/paper-tooltip/paper-tooltip.html">
  <link rel="import" href="../../bower_components/paper-checkbox/paper-checkbox.html">
  <link rel="import" href="../../bower_components/paper-dialog/paper-dialog.html">
  <link rel="import" href="../data-table-controllet/data-table-controllet.html">
  
706288a2   Renato De Donato   geojson incoming
12
  <script type="text/javascript" src="../../bower_components/jsdatachecker/jsdatachecker.min.js"></script>
ad18ef24   Andrea Petta   plugin update
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
  
  <dom-module id="dataset-table-controllet">
  
      <template>
  
          <style is="custom-style">
  
              paper-checkbox {
                  height: 24px;
                  /*margin-top: 8px*/
                  --paper-checkbox-checked-color: #2196F3;
                  --paper-checkbox-checked-ink-color: #FFFFFF;
                  --paper-checkbox-unchecked-color: #000000;
                  --paper-checkbox-unchecked-ink-color: #FFFFFF;
                  --paper-checkbox-label-color: #000000;
              }
  
              paper-input {
                  max-width: 288px;
                  --paper-input-container-focus-color: #2196F3;
              }
  
              paper-icon-button.preview-close
              {
                  height: 28px;
                  width: 28px;
              }
  
              paper-icon-button{
                  height: 48px;
                  width: 48px;
                  padding: 0px;
                  --paper-icon-button-ink-color: #FFFFFF;
              }
  
              paper-icon-button.tools
              {
                  height: 24px;
                  width: 24px;
                  padding: 0px;
                  --paper-icon-button-ink-color: #2196F3;
              }
  
              paper-icon-button:hover{
                  color: #2196F3;
              }
  
              paper-icon-button.clear {
                  width: 24px;
                  height: 24px;
                  padding: 0px 4px;
                  color: #F44336;
                  --paper-icon-button-ink-color: #FFFFFF;
              }
  
              paper-icon-button.order {
                  height: 24px;
                  width: 24px;
                  cursor: pointer;
              }
  
              paper-icon-button.order:hover {
                  color: #FFFFFF;
              }
  
              paper-tooltip {
                  --paper-tooltip-background: black;
              }
  
              #data_table_container {
                  height: 100%;
                  width: 100%;
              }
  
              #data_table_container * {
                  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
                  font-size: 16px;
                  line-height: 24px;
              }
  
              #data_table_container #header {
                  background: #B6B6B6;
                  height: 24px;
                  padding: 12px;
                  text-align: center;
                  font-weight: 700;
              }
  
              #data_table_container table {
                  height: calc(100% - 96px);
                  width: 100%;
  
                  border-spacing: 0px;
              }
  
              #data_table_container tbody {
                  width: 100%;
                  display: block;
                  position: relative;
              }
  
              #data_table_container .even-row{
  
              }
  
              #data_table_container .odd-row{
                  background: #E0E0E0;
              }
  
              /*#data_table_container tr:nth-child(odd) {
                  background: #E0E0E0;
              }*/
  
              #data_table_container th,
              #data_table_container td{
                  height: 24px;
                  padding: 12px;
                  text-align: center;
                  max-width: 224px;
                  overflow: hidden;
                  white-space: nowrap;
                  text-overflow: ellipsis;
                  width: 1%;
                  vertical-align: middle;
              }
  
              #data_table_container th {
                  background: #2196F3;
                  color: #FFFFFF;
                  font-weight: 700;
                  /*cursor: help;*/
              }
  
              #data_table_container td {
                  font-size: 14px;
                  padding: 4px;
              }
  
              #data_table_container tfoot td {
                  height: 48px;
                  padding: 0px;
                  font-size: 16px;
                  background: #B6B6B6;
              }
  
              #data_table_container #footer {
                  width: 100%;
                  height: 48px;
                  background: #B6B6B6;
  
                  display: flex;
                  flex-direction: row;
              }
  
              #data_table_container .footer_block {
                  height: 24px;
                  padding: 12px 8px;
                  text-align: right;
              }
  
              #data_table_container .footer_block:nth-child(1) {
                  width: 30%;
                  overflow: hidden;
                  white-space: nowrap;
                  text-overflow: ellipsis;
              }
  
              #data_table_container .footer_block:nth-child(2) {
                  width: 40%;
                  height: 48px;
                  padding: 0px 8px;
                  text-align: center;
              }
  
              #data_table_container .footer_block:nth-child(3) {
                  width: 30%;
                  height: 40px;
                  padding: 4px 8px;
                  text-align: left;
              }
  
              #data_table_container br {
                  display: block;
                  margin-top: 8px;
                  content: " ";
              }
  
              #data_table_container p {
                  margin: 0;
                  padding: 0;
              }
  
              #data_table_container p .type{
                  font-weight: 700;
              }
  
              #data_table_container p .warning{
                  font-weight: 700;
                  color: #F44336;
              }
  
              paper-dialog {
                  /*position: fixed;*/
                  min-height: 80%;
                  min-width: 85%;
                  height: 80%;
                  width: 85%;
              }
  
              paper-dialog > *
              {
                  padding: 0;
                  margin: 0;
              }
  
              .buttons_position
              {
                  position: absolute;
                  top: 10px;
                  right: 10px;
              }
  
          </style>
  
          <paper-material id="data_table_container" elevation="5">
  
              <div id="header">
                  <span id="selected_data"></span>
                  <div style="float: right; right: 10px">
86d5c0ac   Andrea Petta   plugin update
242
                      <paper-checkbox checked on-change="showAll"><span id="suggested_datasets">{{_tr("last_version")}}</span></paper-checkbox>
ad18ef24   Andrea Petta   plugin update
243
244
245
246
247
248
249
250
                  </div>
              </div>
  
              <table>
                  <tbody id="tbody">
                  <tr>
                      <template is="dom-repeat" items="{{fields}}">
                          <th id="id_{{index}}">
86d5c0ac   Andrea Petta   plugin update
251
                              {{_tr(item.name)}}
ad18ef24   Andrea Petta   plugin update
252
253
254
255
                              <paper-icon-button id="{{index}}" class="order" on-click="_order" icon="unfold-more"></paper-icon-button>
                          </th>
                      </template>
                      <th>
86d5c0ac   Andrea Petta   plugin update
256
                          {{_tr("TOOLS")}}
ad18ef24   Andrea Petta   plugin update
257
258
259
260
                      </th>
                  </tr>
                  <template is="dom-repeat" items="{{shownData}}">
                      <tr class$="{{item.cssClass}}">
a008af0e   Andrea Petta   plugin update
261
262
263
                          <template is="dom-repeat" items="{{_toArray(item)}}" as="elem">
                              <template is="dom-if" if="{{!elem.isLink}}">
                                  <td title="{{elem.value}}">{{elem.value}}</td>
ad18ef24   Andrea Petta   plugin update
264
                              </template>
a008af0e   Andrea Petta   plugin update
265
                              <template is="dom-if" if="{{elem.isLink}}">
ad18ef24   Andrea Petta   plugin update
266
                                  <td>
a008af0e   Andrea Petta   plugin update
267
                                      <template is="dom-repeat" items="{{elem.value}}" as="user" >
ad18ef24   Andrea Petta   plugin update
268
                                          <div class="ow_avatar">
b3ae5cd5   Andrea Petta   plugin update
269
270
                                              <a href="{{user.href}}">
                                                  <img alt="" src="{{user.src}}" style="max-width: 100%;">
ad18ef24   Andrea Petta   plugin update
271
272
273
274
275
276
277
                                              </a>
                                          </div>
                                      </template>
                                  </td>
                              </template>
                          </template>
                          <td>
86d5c0ac   Andrea Petta   plugin update
278
279
280
281
                              <paper-icon-button title='{{_tr("open")}}'          room_id$="{{item.ID}}" version$="{{item.VER}}" class="tools" icon="open-in-new" on-click="_onOpenDatasetClick"></paper-icon-button>
                              <paper-icon-button title='{{_tr("download_csv")}}'  room_id$="{{item.ID}}" version$="{{item.VER}}" class="tools" icon="file-download" on-click="_onDownloadDatasetClick"></paper-icon-button>
                              <paper-icon-button title='{{_tr("copy_link")}}'     room_id$="{{item.ID}}" version$="{{item.VER}}" class="tools" icon="content-copy" on-click="_onCopyDatasetClick"></paper-icon-button>
                              <paper-icon-button title='{{_tr("download_docs")}}' room_id$="{{item.ID}}" version$="{{item.VER}}" class="tools" icon="description" on-click="_onDownloadInfoClick"></paper-icon-button>
ad18ef24   Andrea Petta   plugin update
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
                          </td>
                      </tr>
                  </template>
                  </tbody>
              </table>
  
              <!--<template is="dom-repeat" items="{{fields}}">
                  <paper-tooltip for="{{_fieldId(index)}}" offset="8">
                      <p>
                          <span class="type">{{_type()}}:</span> {{item.type}}
                          <template is="dom-if" if={{item.errorsDescription.length}}>
                              <br/>
                              <span class="warning">{{_warning()}}:</span> {{item.errorsDescription}}
                          </template>
                      </p>
                  </paper-tooltip>
              </template>-->
  
              <div id="footer">
                  <div class="footer_block">
                      <span id="showing"></span> {{shownPrev}} <span id="to"></span> {{shownNext}} <span id="of"></span> {{length}} <span id="rows"></span>
                  </div>
                  <div class="footer_block">
                      <paper-icon-button id="slider_chevron_left" class="chevron-left" on-click="_onPrevClick" icon="chevron-left"></paper-icon-button>
                      <paper-icon-button id="slider_chevron_right" class="chevron-right" on-click="_onNextClick" icon="chevron-right"></paper-icon-button>
                  </div>
                  <div class="footer_block">
                      <paper-input id="filter" value={{filter}} no-label-float>
                          <iron-icon class="search" icon="search" prefix></iron-icon>
                          <paper-icon-button class="clear" suffix on-click="_clearInput" icon="clear"></paper-icon-button>
                      </paper-input>
                  </div>
              </div>
  
          </paper-material>
  
          <paper-dialog modal id="paper_dialog">
a008af0e   Andrea Petta   plugin update
319
              <data-table-controllet id="data_table_controllet"></data-table-controllet>
ad18ef24   Andrea Petta   plugin update
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
              <div class="buttons buttons_position">
                  <paper-icon-button dialog-confirm icon="close" class="preview-close"></paper-icon-button>
              </div>
          </paper-dialog>
  
      </template>
  
      <script>
  
          Polymer({
  
              is : 'dataset-table-controllet',
  
              properties : {
  
                  data : {
                      type  : Array,
                      value : []
                  },
  
                  filter : {
                      type  : String,
                      value : undefined,
                      observer : '_filter'
86d5c0ac   Andrea Petta   plugin update
344
345
346
347
348
                  },
  
                  localization : {
                      type : String,
                      value : "en"
ad18ef24   Andrea Petta   plugin update
349
350
351
352
353
354
                  }
  
              },
  
              ready : function() {
                  this.step = 10;
86d5c0ac   Andrea Petta   plugin update
355
                  ln["localization"] = this.attributes["localization"].value;
ad18ef24   Andrea Petta   plugin update
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
              },
  
              attached : function(){
                  $(this.$.tbody).perfectScrollbar();
  
                  this._resize();
                  var that = this;
                  window.addEventListener("resize", function() { that._resize(); });
  
                  this._translate();
  
                  if(this.data.length > 0)
                      this.setData(this.data);
              },
  
              _translate : function(){
                  this.$.selected_data.innerHTML = ln["selectedData_" + ln["localization"]];
  
                  this.$.showing.innerHTML = ln["showing_" + ln["localization"]];
                  this.$.to.innerHTML = ln["to_" + ln["localization"]];
                  this.$.of.innerHTML = ln["of_" + ln["localization"]];
                  this.$.rows.innerHTML = ln["rows_" + ln["localization"]];
  
                  this.$.filter.setAttribute("label", ln["search_" + ln["localization"]]);
              },
  
86d5c0ac   Andrea Petta   plugin update
382
383
384
385
              _tr: function(key) {
                  return ln[key +"_"+ this.attributes["localization"].value];
              },
  
ad18ef24   Andrea Petta   plugin update
386
387
388
              _type : function() {return ln["type_" + ln["localization"]];},
              _warning : function() {return ln["warning_" + ln["localization"]];},
  
a008af0e   Andrea Petta   plugin update
389
390
391
              _onDownloadInfoClick: function(e){
                  $.ajax({
                      url: ODE.ajax_coocreation_get_dataset_docs,
7d305508   Andrea Petta   plugin update
392
                      data: {room_id : e.target.parentElement.attributes["room_id"].value, version : e.target.parentElement.attributes["version"].value},
a008af0e   Andrea Petta   plugin update
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
                      dataType: "text",
                      success: function(e){
                          var fileName = "dataset";
                          var uri = 'data:text/html;charset=utf-8,' + encodeURI(e);
                          var link = document.createElement("a");
                          link.href = uri;
                          link.style = "visibility:hidden";
                          link.download = fileName + ".html";
                          document.body.appendChild(link);
                          link.click();
                          document.body.removeChild(link);
                      }
                  });
              },
  
              _onCopyDatasetClick: function(e) {
                  var base_url = window.location.origin;
                  window.prompt("Copy to clipboard: Ctrl+C, Enter", base_url + '/cocreation/ajax/get-dataset-by-room-id-and-version/?room_id=' + e.target.parentElement.room_id + '&version=' + e.target.parentElement.version);
              },
  
              _onDownloadDatasetClick: function(e) {
  
                  $.ajax({
                      url: ODE.ajax_coocreation_get_dataset,
1a40ca08   Andrea Petta   plugin update
417
                      data: {room_id : e.target.parentElement.attributes["room_id"].value, version : e.target.parentElement.attributes["version"].value},
a008af0e   Andrea Petta   plugin update
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
                      dataType: "json",
                      success: function(e){
                          var arrData = e;
                          var row = "";
                          var CSV = "";
  
                          for (var index in arrData[0]) {
                              row += index + ',';
                          }
  
                          row = row.slice(0, -1);
  
                          //append Label row with line break
                          CSV += row + '\r\n';
                          for (var i = 0; i < arrData.length; i++) {
                              var row = "";
  
                              //2nd loop will extract each column and convert it in string comma-seprated
                              for (var index in arrData[i]) {
7636727a   Luigi Serra   updates
437
                                  row += '`' + arrData[i][index] + '`,';
a008af0e   Andrea Petta   plugin update
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
                              }
  
                              row.slice(0, row.length - 1);
                              //add a line break after each row
                              CSV += row + '\r\n';
                          }
  
                          if (CSV == '') {
                              alert("Invalid data");
                              return;
                          }
  
                          //Generate a file name
                          var fileName = "dataset";
                          //Initialize file format you want csv or xls
                          var uri = 'data:text/csv;charset=utf-8,' + encodeURI(CSV);
                          //this trick will generate a temp <a /> tag
                          var link = document.createElement("a");
                          link.href = uri;
                          link.style = "visibility:hidden";
                          link.download = fileName + ".csv";
                          document.body.appendChild(link);
                          link.click();
                          document.body.removeChild(link);
                      }
                  });
              },
  
  
              _onOpenDatasetClick : function(e) {
  
                  var t = this;
  
                  $.ajax({
                      url: ODE.ajax_coocreation_get_dataset,
1a40ca08   Andrea Petta   plugin update
473
                      data: {room_id : e.target.parentElement.attributes["room_id"].value, version : e.target.parentElement.attributes["version"].value},
a008af0e   Andrea Petta   plugin update
474
475
476
477
478
479
480
                      dataType: "json",
                      success: function(e){
                          t.$.data_table_controllet.setData(e);
                          t.$.paper_dialog.open();
                          t.$.data_table_controllet._resize();
                      }
                  });
ad18ef24   Andrea Petta   plugin update
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
              },
  
              setData : function(data) {
                  var converter = new DataTypeConverter();
                  var result = converter.inferJsonDataType(data, ["*"]);
                  result = converter.cast(result);
                  delete result.types.ID;
                  this.fields = ArrayUtils.toFieldsArray(result.types);
                  this.originalData = result.dataset;
                  this.uniqueData = [];
                  var uniqueId = {};
                  var cssClass = ["even-row", "odd-row"];
                  var j = 0;
  
                  for(var i=0; i<result.dataset.length; i++) {
                      if (!uniqueId[result.dataset[i].ID.toString()]) {
                          uniqueId[result.dataset[i].ID.toString()] = result.dataset[i].ID.toString();
                          result.dataset[i]["cssClass"] = cssClass[j%2];
                          this.uniqueData.push(result.dataset[i]);
                          j++;
                      }
                      result.dataset[i]["cssClass"] = cssClass[j%2];
                  }
  
                  this.data = this.uniqueData;
                  this.filter = "";
                  $(".order").attr("icon", "unfold-more");
  
                  this.prev = 1;
                  this.next = this.step;
                  this.length = this.data.length;
  
                  this.shownPrev = Math.min(this.prev, this.length);
                  this.shownNext = Math.min(this.next, this.length);
                  this.shownData = this.data.slice(this.prev-1, this.next);
  
                  this._resize();
              },
  
              reset : function(){
                  this.setData([]);
                  $(this.$.tbody).animate({ scrollTop: 0}, 0);
  //                this.filter = "";
              },
  
              showAll : function (e) {
  
                  if(!e.target.checked) {
                      this.data = this.originalData;
                  }else{
                      this.data = this.uniqueData;
                  }
                  this.length = this.data.length;
                  this.shownPrev = Math.min(this.prev, this.length);
                  this.shownNext = Math.min(this.next, this.length);
                  this.shownData = this.data.slice(this.prev-1, this.next);
              },
  
              _onPrevClick : function(){
                  if(this.prev != 1) {
                      this.prev -= this.step;
                      this.next -= this.step;
  
                      this.shownPrev = Math.min(this.prev, this.length);
                      this.shownNext = Math.min(this.next, this.length);
                      this.shownData = this.data.slice(this.prev - 1, this.next);
                  }
                  $(this.$.tbody).animate({ scrollTop: 0}, 0);
              },
  
              _onNextClick : function(){
                  if(this.next < this.length) {
                      this.prev += this.step;
                      this.next += this.step;
  
                      this.shownPrev = Math.min(this.prev, this.length);
                      this.shownNext = Math.min(this.next, this.length);
                      this.shownData = this.data.slice(this.prev - 1, this.next);
                  }
                  $(this.$.tbody).animate({ scrollTop: 0}, 0);
              },
  
              _filter : function(a, b) {
                  this.debounce('_filter', function () {
                      if(this.data.length) {
                          var filter = this.filter.toLowerCase();
  
                          if(filter == "")
                              this.shownData = this.data;
                          else {
                              var keys = Object.keys(this.data[0]);
                              this.shownData = this.data.filter(function (el) {
                                  var values = keys.map(function (key) {
                                      return el[key];
                                  });
                                  for (var i in values)
                                      if (values[i] && String(values[i]).toLowerCase().indexOf(filter) > -1)
                                          return true;
                                  return false;
                              });
                          }
  
                          this.prev = 1;
                          this.next = this.step;
                          this.length = this.shownData.length;
  
                          this.shownPrev = Math.min(this.prev, this.length);
                          this.shownNext = Math.min(this.next, this.length);
                          this.shownData = this.shownData.slice(this.prev - 1, this.next);
  
                          $(this.$.tbody).animate({ scrollTop: 0}, 0);
                      }
                  }, 300);
              },
  
              _clearInput : function() {
                  this.$.filter.value = "";
              },
  
              _order : function(e) {
                  t = $(e.target).parents("paper-icon-button")[0];
  
                  var icon = t.getAttribute("icon");
                  var id = t.getAttribute("id");
                  var field = this.fields[id];
                  var reverse = false;
  
                  if(icon.indexOf("unfold-more") > -1){
                      t.setAttribute("icon", "arrow-drop-up");
                  }
                  else if(icon.indexOf("arrow-drop-up") > -1){
                      t.setAttribute("icon", "arrow-drop-down");
                      reverse = true;
                  }
                  else if(icon.indexOf("arrow-drop-down") > -1){
                      t.setAttribute("icon", "arrow-drop-up");
                  }
  
  
                  if(field.type == "NUMBER")
  //                    this.data = this.data.sort(this._sort_by(field.name, reverse, parseInt));
                      this.data = this.data.sort(this._sort_by(field.name, reverse, function(a){return (isNaN(a) ? -Number.MAX_VALUE : a)}));
                  else
                      this.data = this.data.sort(this._sort_by(field.name, reverse, function(a){return (a ? a.toLowerCase() : "")}));
                  this._filter();
              },
  
              _sort_by : function(field, reverse, primer){
  
                  var key = primer ?
                          function(x) {return primer(x[field])} :
                          function(x) {return x[field]};
  
                  reverse = !reverse ? 1 : -1;
  
                  return function (a, b) {
                      return a = key(a), b = key(b), reverse * ((a > b) - (b > a));
                  }
              },
  
              _toArray: function(obj) {
b3ae5cd5   Andrea Petta   plugin update
642
                  //var regExp  = new RegExp(/(https?:\/\/[^\s]+)/g);
ad18ef24   Andrea Petta   plugin update
643
644
                  return Object.keys(obj).map(function(key) {
                      if(key != "ID" && key != "cssClass") {
b3ae5cd5   Andrea Petta   plugin update
645
                          //var test = regExp.test(obj[key]);
ccdabeee   Andrea Petta   plugin update
646
                          var isLink = (obj[key].constructor === Array);
ad18ef24   Andrea Petta   plugin update
647
648
                          return {
                              key: key,
b3ae5cd5   Andrea Petta   plugin update
649
                              value: obj[key], //test ? obj[key].split(",") : obj[key],
ccdabeee   Andrea Petta   plugin update
650
                              isLink: isLink
ad18ef24   Andrea Petta   plugin update
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
                          }
                      }
                  });
              },
  
              _fieldId: function(index) {
                  return "id_" + index;
              },
  
              _resize : function(){
                  this.async(function() {
                      var h = $(this.$.data_table_container).height() - 96;
                      var w = $(this.$.data_table_container).width();
                      $(this.$.tbody).width(w).height(h);
                      $(this.$.tbody).perfectScrollbar('update');
                  }, 1);
              }
  
          });
  
      </script>
  
  </dom-module>