Hi All,
I have created a panel and shows up corrrectly.
What i want is ability to click on Panel and alert box shows up. But this is not happening.
I need user's to click on this and get an alert.
Code:
var L3ST70 = new sap.ui.commons.Panel("L3ST70",{applyContentPadding: true, width: "120px", height: "130px", showCollapseIcon: false,
click: function(){alert("clicked");}
});
Regards.