Re: Give confirmation before view unload
Hi All, I am still searching for solution to prevent user from navigating to other view before confirmation. Thanks in advanced.
View ArticleRe: Call SAP GUI out of UI5
Hi Christoph, Another option would be to create a (REST) web service that returns a SAPGUI shortcut file: SAPGUI shortcuts - ABAP Development - SCN Wiki You could for example make a <a> html...
View ArticleRe: Give confirmation before view unload
You can use sap.m.MessageBox.confirm which creates a confirmation dialog. A sample implementation, JS Bin - Collaborative JavaScript Debugging</title> <link...
View ArticleSimple Control Container Problem
Hi AllI have use simple control container (Creating a Simple Container Control - SAPUI5 Developer Guide for SAP HANA - SAP Library)instead of ColorBoxContainer I renamed it to "SimpleControlContainer",...
View ArticleRe: Changing color of sap.m.StandardTile
HI Ranjit Here is an example for change background color of sap.m.StandardTile Example Thanks-D
View ArticleRe: Changing color of sap.m.StandardTile
<style> .redTile{background-color: red;} .blueTile{background-color: blue;}</style> In the index.html I have add it as shown above but still.
View ArticleRe: Changing color of sap.m.StandardTile
Make sure that you added that style tag at the end of the head tag. CSS is applied in sequence. If your custom CSS is mentioned in the code before the standard theme is loaded, it will be overwritten...
View ArticleRe: Changing color of sap.m.StandardTile
Hi Max, As shown in an jsbin demo by Dennis, It worked for him, but not for me. I have added the style tag at the end of Head in my index.html.
View ArticleRe: Changing color of sap.m.StandardTile
Hi Dennis and Max, I am extremely sorry after adding the style tag at the end it worked. I just overlooked.
View ArticleRe: Changing color of sap.m.StandardTile
No problem. So long your question is answered. We are ok Thanks-D
View ArticleHow to get selected data in table from button click event ?
Hi guys. I want to get selected item in table. var oModel = new sap.ui.model.odata.ODataModel("http://myserver/sap/opu/odata/sap/MySRV/"); oTable.setModel(oModel); oTable.bindRows({ path :...
View ArticleCustomizing Sap.viz charts
Hello, Can we design a graph using VizContainer or VizFrame which contains multiple columns and one can select different chart type for different column. For Example: I have 4 columns in which 3 must...
View ArticleCustomizing Sap.viz charts
Hello, Can we design a graph using VizContainer or VizFrame which contains multiple columns and one can select different chart type for different column. For Example: I have 4 columns in which 3 must...
View ArticleRe: How to get selected data in table from button click event ?
check working example here. JS Bin - Collaborative JavaScript Debugging</title> <link rel="alternate" type="application/jso…
View Articlesapui5 uitcomponent properties
Hi experts, I m looking for a reference api , where i can find the name of the properties using inside the metadata configuration : Many code on thenet with something like :metadata : { name :...
View ArticleRe: sapui5 uitcomponent properties
Hi Moo, You can find information about Component Metadata in the Developer Guide. Look into this developer guide document: Component Metadata Regards,Kimmo
View ArticleRe: How get table row Controls
Check the working example here. JS Bin - Collaborative JavaScript Debugging</title> <link rel="alternate" type="application/jso… On change of drop down,...
View Article