SmartClient Version: v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
Firefox version 49.0.2
The DynamicForm components in the HLayout are clipped only in the Firefox browser because internally, the overflow is set to hidden by SmartClient. The SpinnerItem in the DynamicForm is cut off. If I call reflowNow on the HLayout, the HLayout would resize to fit all the DynamicForms contents. I would set this by calling reflowNow on the HLayout's resized function. Below I have the code with the affected scenario (does not call reflowNow). Is there a better way to fix this issue? I want the HLayout to show all of the DynamicForm's contents.
Firefox version 49.0.2
The DynamicForm components in the HLayout are clipped only in the Firefox browser because internally, the overflow is set to hidden by SmartClient. The SpinnerItem in the DynamicForm is cut off. If I call reflowNow on the HLayout, the HLayout would resize to fit all the DynamicForms contents. I would set this by calling reflowNow on the HLayout's resized function. Below I have the code with the affected scenario (does not call reflowNow). Is there a better way to fix this issue? I want the HLayout to show all of the DynamicForm's contents.
Code:
isc.Canvas.create({ width: "100%", height: "100%", backgroundColor: "green", children: [ isc.HLayout.create({ top: 10, left: 10, members: [ isc.DynamicForm.create({ backgroundColor: 'blue', fields: [{ title: 'hello world', wrapTitle: false, editorType: "SpinnerItem" } ] }), isc.DynamicForm.create({ backgroundColor: 'red', fields: [ { title: 'second title', wrapTitle: false, editorType: "SpinnerItem" } ] }) ] }) ] });
Comment