var somePanel = new sap.ui.commons.Panel({
id:"somePanel",
text:"Panel",
showCollapseIcon:true
});
somePanel.addDelegate({
onAfterRendering: function() {
$("#somePanel").attr("tabindex", -1);
}
});
but I need Collapse Icon also
var somePanel = new sap.ui.commons.Panel({
id:"somePanel",
text:"Panel",
showCollapseIcon:true
});
somePanel.addDelegate({
onAfterRendering: function() {
$("#somePanel").attr("tabindex", -1);
}
});
but I need Collapse Icon also