DmitrMakeev commited on
Commit
3997d45
·
verified ·
1 Parent(s): f6e1426

Update data_gc_tab.html

Browse files
Files changed (1) hide show
  1. data_gc_tab.html +6 -0
data_gc_tab.html CHANGED
@@ -30,6 +30,12 @@ var table = new Tabulator("#example-table", {
30
  {title:"Driver", field:"car", hozAlign:"center", formatter:"tickCross", width:150},
31
  ],
32
  });
 
 
 
 
 
 
33
  </script>
34
 
35
 
 
30
  {title:"Driver", field:"car", hozAlign:"center", formatter:"tickCross", width:150},
31
  ],
32
  });
33
+
34
+
35
+ table.on("tableBuilt", () => {
36
+ table.setPage(2);
37
+ });
38
+
39
  </script>
40
 
41