SmartClient Version: SNAPSHOT_v12.1d_2020-01-07/AllModules Development Only (built 2020-01-07)
and
SmartClient Version: v11.1p_2020-01-07/AllModules Development Only (built 2020-01-07)
Chrome on OSX
Hello, it seems that when I have a form with more than one TextAreaItem on the same row, where every item has width:"*", the first textArea has width = 100.
Please try this test case:
and
SmartClient Version: v11.1p_2020-01-07/AllModules Development Only (built 2020-01-07)
Chrome on OSX
Hello, it seems that when I have a form with more than one TextAreaItem on the same row, where every item has width:"*", the first textArea has width = 100.
Please try this test case:
Code:
isc.DynamicForm.create({
width: 600,
numCols: 3,
titleOrientation: "top",
fields: [
{name: "textArea", title:"TextArea", type:"textArea", width: "*"},
{name: "textArea2", title:"TextArea 2", type:"textArea", width: "*"},
{name: "textArea3", title:"TextArea 3", type:"textArea", width: "*"}
]
});
Comment