I am trying to create IconTabBar but the IconTabBar is not picking up the items I define (See below code snippet). The stuff that I put inside the content is displayed fine however. I also tried just copy and pasting the first example from sap.m.IconTabBar and thereit also did not display the IconTabFilters defined in the coding. Right now I am running out of ideas where to look for the cause of this, can anyone give me any solutions/hints where to look?
P.S:
the IconTabBar is inside a Panel which itself is the content of a CustomListItem.
new sap.m.IconTabBar({
expandable: false,
items: [
new sap.m.IconTabFilter({
key : "purchase",
icon : "sap-icon://sales-order",
}),
....
],
content : [
....
],
}),