Hi,
To develop a ComboBox in SAPUI5 i use the snippet:
new sap.ui.commons.ComboBox(
"",
{
tooltip : "Status",
displaySecondaryValues : true,
items : oListBoxStatus
})
oListBoxStatus
var oListBoxStatus = [
new sap.ui.core.ListItem("",
{
text : "var 1"
}),
new sap.ui.core.ListItem("",
{
text : "var 2"
}),
new sap.ui.core.ListItem("",
{
text : "var 3"
})
];
Selecting an item in IE8 is not possible. If you hoover an item, the IE produces a stackoverflow.
You are not able to select one Item.
Why? 😕
Thanks for your help in advance.😊