Icon in StandardTile causes tile to re-enter container when model is updated
Hi,I am building an app with a TileContainer and respective StandardTiles. The number and info properties of these tiles are bound to a global model which is updated by an interval timer. If the tile...
View ArticleHow to insert multiple DIV's in single HTML page
Hello All, We have a requirement where we have to display the output in two sections in single HTML page. In first section we will be building the UI logic in the landing HTML page using JavaScript and...
View ArticleRe: How to insert multiple DIV's in single HTML page
Uncaught TypeError: Cannot read property 'log' of undefined This is the error message that I am getting when I mix both the sections of data to display in single HTML pagebut I am not getting this...
View ArticleHow to create new controls+control libraries
Hi there! I saw this post:How to create custom control from scratch which is very informative but I know there is a better way to create new controls like this: I saw this...
View ArticleRe: How to insert multiple DIV's in single HTML page
Hi Ramesh, yes you can have multiple DIV in single HTML. you can refer this example JS Bin - Collaborative JavaScript Debugging</title> <link rel="icon"...
View ArticleRe: Icon in StandardTile causes tile to re-enter container when model is updated
Hi Matthias, Seems to be issue with SAPUI5 Icon. if we provide icon other than sapui5 icons then it is working fine for eg http://jsbin.com/jipetize/5/edit Regards,Chandra
View ArticleRe: Show the Google map
You need to set sId for each sap.m.IconTabFilter like this: new sap.m.IconTabFilter('TF1',{ text: "Floor Plan", icon: "sap-icon://puzzle", iconColor: sap.ui.core.IconColor.Default,...
View ArticleRe: Show the Google map
Hi Siddiqui, Thank you so much. It is working now.. Thanks Himadri
View ArticleSAPUI5 get URL parameters
Hi, I have a URL. Example: datalink.html?param1=1¶m2=2¶m3=3 The URL points to a .HTML with a SAPUI5 view placed in the body content. In the .HMTL I also include some .js files....
View ArticleRe: SAPUI5 get URL parameters
Try this code: var complete_url = window.location.href; var pieces = complete_url.split("?"); var params = pieces[1].split("&"); $.each( params, function( key, value ) { var param_value...
View ArticleRe: SAPUI5 get URL parameters
Thanks, I'll give that a try first thing tomorrow. Just to add, the .html detailed above is embedded within an iframe of a html control in a parent view, so hoping window.location.href in child.html...
View ArticleRe: SAPUI5 get URL parameters
The SAPUI5 library does provide a method. var sValue = jQuery.sap.getUriParameters().get("myUriParam");Regards,Jason
View ArticleRe: How to set dynamic "id"s ?
Hi What have you tried so far? Also, it's not considered good practice asking new questions in the comment thread of another message (and it's less likely that it will get seen and addressed). Might I...
View ArticleRe: nodeContext for sap.ui.commons.Tree and XML data
works for me..see below createContent : function(oController) { var oModel = new sap.ui.model.xml.XMLModel(); oModel.loadData('data.xml'); oModel.attachRequestCompleted(function(event){...
View ArticleRe: where i can get fiori launchpad source latest one ?
You can find the download information in the following guide at page 12 point 2.2.1 https://help.sap.com/saphelp_fiori/fiori10_install_en.pdf For more information about...
View ArticleRe: Auto Reload/Refresh the table data using sap.ui.table.Table
You could use setTimeout in javascript to check if the data is changed every 5 seconds:Window setTimeout() Method Kind regards,Wouter
View ArticleRe: where i can get fiori launchpad source latest one ?
Hi Abul, For new SAP Fiori Launchpad, go to SE80 and open the BSP app /UI2/USHELL. Regards,MasaSAP Rapid Innovation Group - RIG
View ArticleRe: How to set dynamic "id"s ?
Hi DJtried adding the textfield with id:{attrName} does not work, throws exception. I have now replaced this with another layout which has labels and textfield, which solves the issue but the real one...
View ArticleGet row index when Link control is clicked in table
Hi all,my UI5 table is made of rows arranged as follows: Column 1: Link (upon clicking the Link, a ThingInspector will open showing details of the item)Column 2: Text (short description of the...
View Article