SmartClient v8.3p_2013-01-23/LGPL
RadioGroup doesn't render correctly in ToolStrip (see pic1, height of toolstrip was stretched) in both FF18 and IE9. Here is the code to reproduce it:
After removed RadioGroup, it looks normal (see pic2) with following:
It looks the height of RadioGroup was miscalculated.
RadioGroup doesn't render correctly in ToolStrip (see pic1, height of toolstrip was stretched) in both FF18 and IE9. Here is the code to reproduce it:
Code:
<body style="background-color:#6699cc"> <script type="text/javascript"> isc.ToolStrip.create({ ID:"test_ts", layoutMargin: 1, members: [ isc.IButton.create({ title: "New", icon: "/icons/silk/add.png", width: 100 }), "separator", isc.DynamicForm.create({ fields: [{ name: "my_status", type: "radioGroup", vertical: false, showTitle: false, valueMap: { "ALL":"All", "NEW":"New", "CLOSED":"Closed" } }] }), "separator", isc.IButton.create({ title: "Broadcast", icon: "/icons/silk/bell.png", width: 100 }) ] }); test_ts.draw(); </script> </body>
Code:
<body style="background-color:#6699cc"> <script type="text/javascript"> isc.ToolStrip.create({ ID:"test_ts", layoutMargin: 1, members: [ isc.IButton.create({ title: "New", icon: "/icons/silk/add.png", width: 100 }), "separator", isc.IButton.create({ title: "Broadcast", icon: "/icons/silk/bell.png", width: 100 }) ] }); test_ts.draw(); </script> </body>
Comment