I have a DynamicForm that fills a Window, and when I change window's height using my mouse I get scrollbars, but only in Firefox and only in some themes:
Works correctly on: Chrome, Firefox 119 with Tahoe theme.
Doesn't work on: Firefox 119 with Enterprise Blue theme.
SmartClient version: v13.0p_2023-11-04/AllModules Development Only
Can be reproducet eg. at https://smartclient.com/smartclient/...sizeIncrease=2 by using this code:
Works correctly on: Chrome, Firefox 119 with Tahoe theme.
Doesn't work on: Firefox 119 with Enterprise Blue theme.
SmartClient version: v13.0p_2023-11-04/AllModules Development Only
Can be reproducet eg. at https://smartclient.com/smartclient/...sizeIncrease=2 by using this code:
Code:
isc.defineClass("CustomItem", "CanvasItem").addProperties({ height: "*", canvasConstructor: isc.Canvas, canvasProperties: { backgroundColor: "red" } }); isc.Button.create({ title: "Show", click: function () { if (this.testWindow == null) { this.testWindow = isc.Window.create({ ID: "testWindow", width: 420, height: 300, autoSize: true, autoCenter: true, isModal: true, showModalMask: true, canDragResize: true, showMinimizeButton: false, dismissOnEscape: true, items: [ isc.DynamicForm.create({ width: "100%", height: "100%", items: [ {name: "item", editorType: "CustomItem"} ] }) ] }); } else { this.testWindow.show(); } this.testWindow.bringToFront(); } })
Comment