Hi,
We observe a different RadioGroupItem behavior on FF and IE. On FF, the item with the negative key will be put before items with positive keys, which is a desired behavior for us. However, on IE the item with the negative key will be put after items with positive keys.
We are using SmartClient_v83p_2013-06-11_PowerEdition on FF12 and IE9.
Please check the following code:
The "-1" item is displayed as the first item on FF but the last item on IE. We want the behavior on FF. Can you please advise? Thanks!
We observe a different RadioGroupItem behavior on FF and IE. On FF, the item with the negative key will be put before items with positive keys, which is a desired behavior for us. However, on IE the item with the negative key will be put after items with positive keys.
We are using SmartClient_v83p_2013-06-11_PowerEdition on FF12 and IE9.
Please check the following code:
The "-1" item is displayed as the first item on FF but the last item on IE. We want the behavior on FF. Can you please advise? Thanks!
Code:
isc.DynamicForm.create({ width: 500, numCols: 4, fields: [ { title: "Date", type: "RadioGroupItem", valueMap: {"-1":"Yesterday", "0":"Today","1":"Tomorrow"}, vertical: false } ] });
Comment