Hi Isomorphic,
please see this modified online testcase (v12.0p_2019-12-07).
I expect the VLayout not to be resizeable via the resizeBar click or drag because of the properties set (here in production, we would only disallow canDrag, but both are not working). But the sample is behaving as if I did not set any properties.
Code:
Best regards
Blama
please see this modified online testcase (v12.0p_2019-12-07).
I expect the VLayout not to be resizeable via the resizeBar click or drag because of the properties set (here in production, we would only disallow canDrag, but both are not working). But the sample is behaving as if I did not set any properties.
Code:
Code:
isc.HLayout.create({ width: "100%", height: "100%", members: [ isc.Label.create({ ID: "test", contents: "Navigation", align: "center", overflow: "hidden", width: "30%", showResizeBar: true, [B]resizeBar: {canDrag: false, canCollapse:false},[/B] border: "1px solid blue" }), isc.VLayout.create({ width: "70%", members: [ isc.Label.create({ contents: "Listing", align: "center", overflow: "hidden", height: "30%", showResizeBar: true, border: "1px solid blue" }), isc.Label.create({ contents: "Details", align: "center", overflow: "hidden", height: "70%", border: "1px solid blue" }) ] }) ] }); isc.logWarn("canDrag:" + test.resizeBar.canDrag) isc.logWarn("canCollapse:" + test.resizeBar.canCollapse)
Blama
Comment