We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 223f6a6 + 5d734d5 commit f752027Copy full SHA for f752027
src/body-renderer.js
@@ -144,9 +144,7 @@ export default class BodyRenderer {
144
const style = window.getComputedStyle(this.instance.header);
145
const matrix = new DOMMatrixReadOnly(style.transform);
146
const width = (-matrix.m41) + this.instance.header.clientWidth;
147
- console.log(width);
148
const height = this.bodyScrollable.clientHeight;
149
150
return `
151
<div
152
class="dt-scrollable__no-data"
src/datamanager.js
@@ -77,7 +77,9 @@ export default class DataManager {
77
focusable: false,
78
dropdown: false
79
};
80
-
+ if (this.options.data.length > 1000) {
81
+ cell.resizable = true;
82
+ }
83
this.columns.push(cell);
84
}
85
0 commit comments