Skip to Content
0
Former Member
Jul 21, 2016 at 01:23 PM

[IE 8] sap.ui.commons.ComboBox - select/hover item produces stackoverflow

115 Views

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.😊