Hi,
We notice an OLD behavior change from SmartClient v8.3p_2013_06_03 to current SmartClient v8.3p_2015_05_05 build for RadioGroupItem.
In SmartClient v8.3p_2013_06_03, the radio items were stretching to what was available. However, in v8.3p_2015_05_05 they are strictly placed next to each other.
Is there any way/property we can use to bring back the previous behavior in SmartClient v8.3p_2013_06_03?
Please check the following standalone and the screen shot for reference.
Thanks,
Robin
We notice an OLD behavior change from SmartClient v8.3p_2013_06_03 to current SmartClient v8.3p_2015_05_05 build for RadioGroupItem.
In SmartClient v8.3p_2013_06_03, the radio items were stretching to what was available. However, in v8.3p_2015_05_05 they are strictly placed next to each other.
Is there any way/property we can use to bring back the previous behavior in SmartClient v8.3p_2013_06_03?
Please check the following standalone and the screen shot for reference.
Thanks,
Robin
Code:
isc.DynamicForm.create({
top: 45,
width: 500,
autoDraw: true,
showEdges: true,
fields: [
{title: "Division",
_constructor: "RadioGroupItem",
valueMap: ["Marketing", "Sales", "Manufacturing", "Services"],
width: 500,
vertical: false
}
]
});
Comment