Binding table columns using formatter function
Hi guys, I am trying to develop google maps application that calculates the distance between two locations i.e., current location and my site location .Address of site location is provided by odata...
View ArticleRe: How to expand textarea in table based on content in SAPUI5?
Hi, Thank you very much for your reply. I got the solution for this by placing dynamic row number in text area. oTV = new sap.ui.commons.TextArea({ width : '100%',...
View ArticleRe: System query options not allowed in the requested URI,ODATA,SAPUI5
You can pass the filter using the following code...... var f2 = new sap.ui.model.odata.Filter('<PROPERTY NAME>', [{operator:"EQ" ,value1:"<VALUE>"}]);oTable.bindRows("/<COLLECTION...
View ArticleRe: SAP UI5 ABAP repository - team share project on Mac OSX
Try add the SYSTEM first, on the SAP HANA SYSTEMS tab: Then, try share the project again..
View ArticleRe: Sorting UI5 Table
You will need to use the sort propriet/method. I thing it's better for you to see a LIVE DEMO on SAP UI5 SDK SAPUI5 SDK - Demo Kit There you can see how sorting happens and even edit the script online...
View ArticleRe: Sorting UI5 Table
By the way, maybe you should try this: oTable.sort(oTable.getColumns()[0]);
View ArticleRe: Regarding Mobile Application
Hi, You need to make an app with pages: create a page: var page = sap.ui.view({id:"id", viewName:"viewname", type:sap.ui.core.mvc.ViewType.JS}); create a sap.m.App:var app = new sap.m.App("App"); add...
View ArticleRe: SAPUI5 iView does not work?
Hi,I have been informed that the SAP UI5 iview issues are to be resolved in 7.3 SP11 and is due to some viewport issues (note 1921368).For now I am using a portal component as a workaround instead of...
View ArticleWebSocket server for SAP NetWeaver AS Java
Hello I'm working on a way to communicate with SAP NetWeaver AS Java (not the ABAP stack, but AS Java only). As I don't want to use a lot of AJAX requests for polling data, the WebSocket implementation...
View ArticleRe: Unable to set error field in Table
Did anyone face the same issue?. Can somebody help me to resolve this issue.
View ArticleRe: Adding a single item row by row
Hi Shubham, Thanks for your reply. You are correct that I have two JSONs... However, I didn't understand your solution. Please see sample of the data that I have: JSON (Questions)Question ID1,...
View ArticleRe: search button JSON,WEbservice
Hey Robin van het Hof,When i run the Program First time only one table is comming ,,, my program is working Correct friend ,,,, but the issue is that after i click the SEARCH button after one time,,,,...
View Articlehow create a view (pages in Splittapp) dynamically after Request?
hi, i have a index.html where there is only the div container. then i have a view, which is placed at the container. then i have a controller where i have a request to the backendserver. the request...
View ArticleRe: System expected the element '{http://www.w3.org/2005/Atom}entry
Hi Viren, Can you please check the URI it is using for the Create? Try in Chrome Developer tools, Network tab. Also can you try without '/' in entity name? ThanksKrishna
View ArticleSplitApp Firefox Compatibility
Hi, I'm having some challenges with SplitApp on Firefox 26. It doesn't trigger event when data is loaded in master view.It can be observed also with SAP Demo Purchase Order Approval application...
View ArticleRe: View Navigation
Thanks michael, One more question, We need to select the record id from the list of records displayed in the table. The following is the code snippet used to select the record from the table list of...
View ArticleAdd new entry to local model
Hello everyone, I have a local model, like this one: { "partners" : [ { "name" : "Coca Cola", "icon" : "/img/cocacola.png", "people" : [...
View ArticleRe: View Navigation
Hi Mano,Use the following code. oTable.attachRowSelectionChange(function(oEvent){ var sPath = oEvent.getParameter("rowContext").getPath(); var data = this.getModel().getProperty(sPath);...
View Article