Hi All,
could you please say how to trigger two functions from single button press in SAP UI5 button [Requesting in xml view].
Controller.js
onPress1: function () {
console.log( " 1 Pressed");
},
onPress2: function () {
console.log( "2 Pressed");
},
View.xml(following is working when seperate buttons)
<Button press="onPress1"/>
<Button press="onPress2"/>
View.xml(following is Not working)
<Button press="onPress1 ; onPress1"/>
could you please say where I am going wrong...
Note:for my scenario function2 calling inside function1 will not workout.
Could you please suggest any other solution for XML view.
Thanks in advance,
regards,
Abhiram.