Unable to load multiple libraries during the bootstrapping.
HI Gurus, I have issue in loading multiple libraries with my local SAPUI5 installation. But it is working fine with HANA CLOUD. Please refer the below code. <script...
View ArticleRe: Populate table columns dynamically using oData or SQL
$ .getJSON( url, function(data) { oModel.setData({ path : data.d.results }); oTable.addColumn(new sap.ui.table.Column({ label: new sap.ui.commons.Label({text: ""}),...
View ArticleRe: Unable to load multiple libraries during the bootstrapping.
Hi Ganesh, I am thinking that you are using the controls which are in both sap.m and sap.ui.commons. They might use the code for the controls in sap.m and commons differently. So that they are...
View ArticleRe: How to acheive a flip animated page navigation
This is perfect for a Friday afternoon, the irony of this question is delicious! :-) You point to the sap.m Explored app saying you want a navigation like the "flip" one that takes you from the sample...
View ArticleSelecting Multiple cells in table
Hi Friends I am using ODATA to populate a table(sap.ui.table.Table). I want to select single/multiple cell data on this table and perform some operations (like calculating the sum/average..) I could...
View ArticleRe: what is the right way to navigate between views?
OK, thanks for your reply! I just want to quote from the "best practices":' When lazy loading pages from the server you never know if the desired page has already been loaded. To achieve this the...
View ArticleHow to merge image objects in UI5
Hi, I created some image template like : var imgTemplate1 = new sap.m.Image({ src:{ path:"title", formatter:function(element){ return ('images/'+element+'.png'); } }, width:...
View ArticleRe: How to merge image objects in UI5
The SAPUI5 framework does a lot, but I don't think it stretches to image processing, which is what I'm understanding from your question. I'd suggest that you look into server side image processing...
View ArticleHow to reference Standard Icons in SAPUI 5?
Hello, I want add an Icon to an Button. My code look like:var oSelectButton = new sap.ui.commons.Button({ text : "Select Scanner", tooltip : "This is a test tooltip", icon :...
View ArticleRe: Improving scrolling performance with sap.m.App and sap.m.Page
I'm not so much concerned about Chrome performance - even though the numbers show a dramatic difference, I don't feel any scrolling slowness - it's still 60fps (or close to it), after all. I'm more...
View ArticleRe: How to reference Standard Icons in SAPUI 5?
Hi Sebastian,You need to use jQuery.sap.require("sap.ui.core.IconPool") to load the reference to ICON poolA similar discussion can be found in http://scn.sap.com/thread/3369327 with examples...
View ArticleRe: Selecting Multiple cells in table
Hi Giridhar, Use below one.. oTable.attachRowSelectionChange(function(oEvent) { //Get the content in table you selected var currentRowContext = oEvent.getParameter("rowContext");});
View ArticleRe: How to do offline application in SAPUI5?
I agree with Angel, I would go further and say that you need to incorporate REST patterns such that your $.sap.require("jquery.sap.storage"); is updated after every AJAX call. I imagine with the...
View ArticleAdding tooltip to sap.ui.commons.layout.MatrixLayoutCell
Hi, We're using sap ui5 version 1.9.0. I am trying to add a tooltip to a sap.ui.commons.layout.MatrixLayoutCell control using the setTooltip API. var oHeaderCell = new...
View ArticleRe: SAPUI5 App Packaging with Phonegap in Android Device in Eclipse Juno
Even after putting that line i Get the same error frnd
View Articledouble click on table row
Hello, some users make a double click on a table row, so the row will be selected on first click and deselected on the second. Is there a way to disable the second click or make a double click work to...
View ArticleRe: double click on table row
I found a solution that worked for me: in the view: oTable.attachBrowserEvent("dblclick", oController.onDblClick); oTable.attachBrowserEvent("click", oController.onClick); In the controller: onInit :...
View ArticleModel and binding issue
hello, I have two views , a main view with a textbox and a button and a view that i want to use as a quick view that will show a pie chart for the textbox in the first view... , I used a global model...
View ArticleRe: Model and binding issue
Hi!Try to use the setter setModel on pie chart to refresh it again after button click.Kind regards
View Article