Re: Dynamic loading of data in Model
HI Neha Here is an example on how to bind with XML model. You have to look at this doc to understand how to set the up URL to the model. Hope this helps. -D
View ArticleRe: Popup items and panebar items in ux3 shell?
Hi Shubham, you can add icons in panebar items. see this demo example from sapui5 testsuite Shell - sap.ui.ux3 Here on righthand side panes, if you click on any item, for e.g on Feed then you can see...
View ArticleRe: Getting an error while fetching the data and bind it in the Tree table
just curious. How does your data (from the oData) looks like? -D
View ArticleRe: Problems with own tableRenderer - scrollbar not getting a correct ID
Hi Dennis! Thanks a lot for your kind and swift help! I don't really understand why, but this solved the problem... bye Christian
View ArticleRe: Getting an error while fetching the data and bind it in the Tree table
Hi Aravind, As far as i know odata binding on tree table is not supported i think a similar issuewas reported a while back. refer to link below.oData for treetable - SAPUI5.Regards,...
View ArticleRe: Problems with own tableRenderer - scrollbar not getting a correct ID
You are welcome. this is because of the typo, the init function in the super class is not called. -D
View ArticleRe: Fiori Question - Hide Save as Tile button (bottom right hand corner)
Hi Michael if you can get the handle of ushell object, you can override defineShareButton function to return false :-) -D
View ArticleRe: New UI5 version 1.16.3 ready for download
Hi, hm... which version of what do you mean?UI5 only releases even numbers like 1.16, 1.18, 1.20... Version 1.9 was only an internal development version (and used a long time ago). RegardsAndreas
View ArticleTable optimization and pagination
Hello: I have an question about Tables optimization:We are rendering in a table one ODataModel that is requesting more than 10000 rows, when we load the table for first time it take to much time and we...
View ArticleWill sap.m.panel work for mobiles in sapui5?
Hi, I have tried with sap.ui.commons.panel and it works fine. I want a panel to be displayed on a mobile. But sap.m.panel doesnt work for me...Below is the code: var rPage = new sap.m.Page({...
View ArticleRe: Table optimization and pagination
Hi, you can use $top and $skip query option on OData service to implement client requested paging. see How to Develop Query Options for an OData Service Using Code-Based Implementation for more...
View ArticleRe: how to get binded data from table?
Hi Kishore, I think the following code dump can help you. var data = OTable.getBinding.oList(); All your table data will come into "data" and you can get like... your first row is now data[0]2nd row -...
View ArticleRe: Unable to download SAPUI5 toolkit
Hi Sasi, you can download latest version at OpenUI5 - Download other option is SAP Development Tools for Eclipse Regards,Chandra
View ArticleRe: Unable to download SAPUI5 toolkit
i just tried downloading the toolkit from the same link in my windows 7 with ChromeV33 and its working fine .the registration was successful and an email was received immediately. Please try again in...
View ArticleElectronic Signature using SAPUI5?
Dear UI5 Gurus, Can we Implement Electronic/Digital Signatures using SAPUI5? Consider a business scenario which might require this functionality for some sort of auditing purpose based on Production...
View ArticleRe: Extending Controllers
This is what the LocationDetails.controller.js looks like: sap.ui.controller("de.company.objectManager.view.LocationDetails", { doNavBack : function() {...
View ArticleRe: Extending Controllers
The base controller is created like this: sap.ui.controller("de.company.objectManager.view.LocationDetails", { doNavBack : function() { sap.ui.getCore().getEventBus().publish("nav",...
View ArticleContextBinding for Markers
Hi, can somebody of you tell me, how I can create my own bindingContext? I create a Demo with a list, when I click to an item on the list, I can see some Details. This work with contextbinding. Now I...
View ArticleRe: Extending Controllers
Hi Timo, Can you change the controller definition to the following and try? sap.ui.core.mvc.Controller.extend("de.company.objectManager.view.LocationDetails", { doNavBack : function() {...
View Article