|
1 | 1 | <!doctype html> |
2 | 2 | <head> |
3 | 3 | <title></title> |
4 | | - <link rel="stylesheet" href="{{ urls.style }}"> |
| 4 | + <link rel="stylesheet" href="{{ urls.style_core }}"> |
| 5 | + <link rel="stylesheet" href="{{ urls.style_theme_main }}"> |
| 6 | + <link rel="stylesheet" href="{{ urls.style_theme_horizon }}"> |
5 | 7 | <script src="{{ urls.script }}"></script> |
6 | 8 | <script src="/js/test-runner.js"></script> |
7 | 9 | <style> |
|
14 | 16 | </head> |
15 | 17 | <html> |
16 | 18 | <body> |
17 | | - |
18 | 19 | <div id="example"></div> |
19 | 20 | <script> |
20 | 21 | var hot = new Handsontable(example, { |
21 | 22 | licenseKey: 'non-commercial-and-evaluation', |
22 | 23 | data: Handsontable.helper.createSpreadsheetData(1000, 1000), |
23 | 24 | rowHeaders: true, |
24 | 25 | colHeaders: true, |
| 26 | + themeName: 'ht-theme-main', |
| 27 | + rowHeights: 37, |
| 28 | + colWidths: 80, |
| 29 | + viewportColumnRenderingOffset: 5, |
| 30 | + viewportRowRenderingOffset: 5, |
| 31 | + // renderAllRows: true, |
| 32 | + // renderAllColumns: true, |
25 | 33 | // renderer: function(instance, TD, row, col, prop, value, cellProperties) { |
26 | 34 | // TD.classList.add('test-class'); |
27 | 35 | // TD.innerHTML = '.<b>' + value + '</b>'; |
28 | 36 | // }, |
29 | | - autoColumnSize: false, // AutoColumnSize is asynchronous so it has to be disabled to not inferred stat results |
| 37 | + autoRowSize: false, // autoRowSize is asynchronous so it has to be disabled to not inferred stat results |
| 38 | + autoColumnSize: false, // autoColumnSize is asynchronous so it has to be disabled to not inferred stat results |
30 | 39 | }); |
31 | 40 | </script> |
32 | 41 | <script>document.writeln('Build date: ' + Handsontable.buildDate + ', version: ' + Handsontable.version)</script> |
|
0 commit comments