Hi ,
I've a controller and I want from some function to call to other function inside this controller, how it can be done?
var oButton = new sap.ui.commons.Button({ text: "Re", style: sap.ui.commons.ButtonStyle.Accept, press: oController.myFunction });
when user click on the button it invoke myFunction inside the controller
internalFunction:function(){ } myFunction :function(oEvent){ var aa = internalFunction() }
When I try the following I got error that the function doesnt exist ,any idea?
Thanks,
Joerg