Hello Experts,
I am working on an application which involves CAP and Fiori Elements.
For one of the buttons I want to add the tooltip. Following is the code snippet for the button:
Identification : [
{$Type:'UI.DataFieldForAction', Label: ...
Hello Experts,
There's a function called 'navButtonPress' in sap.m.page.
Is there any similar function in ObjectPageLayout as well? If not then how can we trigger a function on click of already existing back button?
Hello Experts,
I'm working on an application with 2 pages. When I navigate back from 2nd page to 1st page, I want to delete history of 2nd page. For that I'm using
this.getRouter().navTo("firstPage", true);
This is retaining the history of 2nd...
Hello,
I have set editable property of "Input" to false then also outer box of the field is coming in UI.
Code:
<cells> <Input id="text" value="{Text}" editable="false" /> </cells>
ss.png This is how it is looking.
Who do I make it look lik...
maheshkumar.palavalli Yes. I have 2 page application. I tried one solution. //Event Handler for Launcpad Header Back Button var that = this;
this.getOwnerComponent().getService("ShellUIService").then(function(oShellService) {
oShellService.setBa...
Hi Rabin,I want to show a confirmation popup when user click on back button. When clicked on back button I want to ask user if he really wants to navigate. If user clicks on 'OK' then navigate to previous page. If user click on 'Cancel' then stay on ...