We are having issues with the following code. In Firefox, the value map gets displayed according to the key whereas in Chrome/IE, the valuemap gets displayed according to the order it was given. I don't know which behaviour is correct, but they should behave the same way, no?
Code:
isc.HLayout.create({
ID :"HL",
members: [
(isc.DynamicForm.create({
width: 500,
fields: [
{
title: "Result",
type: "select",
valueMap: {"8":"b b","7":"a a"}
}
]
}))]})
Comment