Nige White

Results 63 comments of Nige White

The issue is that Grid printing does not handle auto row height. Try printing the `/Grid/examples/autoheight/` demo. You have to add ``` import '../../lib/Grid/feature/export/Print.js'; ``` Then run `grid.print()`: ![Screenshot 2024-05-16...

`fakeRow` which is used to create the rows for printing must be added as a child to its owning `SubGrid` body element so that 1. It has layout and can...

`Exporter`'s `restoreState` is what causes a refresh of the real Grid while `isExporting` is set to `true`. `restoreState` needs ``` client.isExporting = false; client.state = this.state; ``` So that any...

See also this Grid Print issue: https://github.com/bryntum/support/issues/9295

This is the fix which allows it to work. `Localizable.js`:

Isn't this a dupe of this? https://github.com/bryntum/support/issues/8353 And needs more specification. Hovering and clicking are extremely different. An image oif what is required would be useful. Clicking moves focus away...

Ckient has reported that this happens when a "Bootstrap" modal is shown. Can we test that? Bootstrap?

The change at this line has been reverted: https://github.com/bryntum/bryntum-suite/commit/0ef58ae1a0bc78ebbf09b5e3ea916e530d1e9bc2#diff-4c3e33f4f09d47ab447a64abf7e5e757eb9274fb37a7e42a588c0ac83a4bf780L379 cleanup was being invoked during drag when there are two views which may both take on the dragging. In this case...

`TabPanel.js` needs ``` onContentElMutation() { // When any content changes, then upon next show, applyAutoHeight must be called again this.$measureHeight = true; super.onContentElMutation(...arguments); } ```

But also what is observed in `changeContentElMutationObserver` will have to be configurable on the widget. The `TabPanel` will need to include `childList : true, subtree : true` in its MutationObserver...