I am using the following statement in html page and opening it in IE8 :
cols:[ {view:“richselect”, value:1, //the initially selected one
label: ‘Fruit’,
options:[
{ value:1, label:“Banana”},
{ value:2, label:“Papai” },
{ value:3, label:“Apple” }
]
}
]
In IE8, it gives error : “Error: Invalid argument”, but works fine in firefox and chrome.
As the given code has been used as it is in other html page and there it is working fine (even in IE8, but gives undefined error on double clicking the select box on that page), but in some other HTML page the same is not working.
Is it the problem because of loading time difference of the two pages / due to some layout difference (in one the richselect is under cols:[] and in other it is under rows[] where its working) ?
After fixing the linked issue, I can’t reconstruct the problem with IE8 anymore. So while it may be not exactly the same issue, fix for previous one will cover both.