Re: SAPUI5-How to toggle between HTMLviews using router
Found a very good tutorial that was posted here that explains this well: http://scn.sap.com/community/developer-center/front-end/blog/2014/05/04/get-started-with-sapui5-and-routing What I was...
View ArticleRe: Difference between SAP UI5 and BSP Javascript App
Hi, I think you can use wizards, code snippets and code completion in Eclipse, also use some generators which are not available in SAPGUI. But technically SAPUI5 application on AS ABAP is the same as...
View ArticleShow loading mask in sap ui5
Hi, In the application I am developing, I am showing some dialog boxes on the click of some buttons. Those dialog boxes have table being populated from back-end using ODataModel. I am showing the...
View ArticleRe: Show loading mask in sap ui5
I have't tried, however I believe you can use the LocalBusyIndicator, I think you can use on any control by using the .setBusy(boolean) method, so could set on a container?...
View ArticleRe: Show loading mask in sap ui5
Here's a simple example.http://jsbin.com/laziruze/1/edit
View ArticleRe: Show loading mask in sap ui5
Hi,try this: http://openui5.blogspot.com/2014/04/splash-screen.html advantage of this approach is, it's showing during loading UI5 libraries from server.... Best regards Jiri
View ArticleRe: UI5 App doesn't fit on Smarphones
Hi, it definitely help you, if you will use sap.m. Best regards Jiri
View ArticleRe: UI5 App doesn't fit on Smarphones
Hi, what do you mean exactly? Do you mean I have to kick out all references except for sap.m or do you mean it will help if I create a "sap.m application" directly from the beginning when I create...
View ArticleRe: UI5 App doesn't fit on Smarphones
Hi Dominik, the references to other libs than sap.m do not hurt. If reloading the page after starting phone simulation does not help, I guess there is some element in the page that has a width or...
View ArticleRe: Fiori getContext Detail page SAPUI5
Resolved the issue which i had. Did the binding for the all controls in the controller of the Detail Page in the method - _handleRouteMatched, which handles the routing.
View ArticleHow to get key from a listitem
// // Create the ListBox oSimpleListBox = new sap.ui.commons.ListBox({ allowMultiSelect: true, id: "box1",...
View ArticleRe: Fiori getContext Detail page SAPUI5
Hi Kedar,Please mark this Discussion with a Correct Answer and Helpful Answer where appropriate. See http://scn.sap.com/community/support/blog/2013/04/03/how-to-close-a-discussion-and-why Even if...
View ArticleComboBox with Tree
Hi friends, I want to create a ComboBox with a Tree structure options. Here is the code but doesn't work: //create the Tree controlvar oTree = new sap.ui.commons.Tree("tree");...
View Articleneed guidance
hello all, actually i have saw flat.to website.i am just things how to implement same using sap ui5.But not getting right track.So please have look into website and Can you guys guide me how...
View ArticleRe: How to get key from a listitem
Hi Stam, You can get it as following: alert(selectedItems.getKey()); Regards,Rauf
View ArticleRe: onBefore/AfterRendering in combobox.
hi Supriya Move the onAfterRendering method out like this. combo.onAfterRendering: function() { if (sap.ui.commons.ComboBox.prototype.onAfterRendering) { // have to call control's...
View ArticleRe: ComboBox with Tree
Yes, ListBox can be associate with ComboBox.Is there other way to implement a ComboBox with a Tree structure options? Is it really impossible to process a multi-level hierarchy with ComboBox in openUi5?
View Article