Re: File uploading using sapui5
Hi Jānis, of course, you can do this. You have to do two things: You need to create a new custom control, because this kind of complex file-upload is not available in the SAPUI5 standard control...
View ArticleRe: session in SAP UI 5
Hi Madhumitha, HTML5 Local/Session Storage is your friend. Look at this example at the official PhoneGap documentation. With this storage interface, you can manage a session by your own. Because SAPUI5...
View ArticleRe: cache-buster mechanism on mobile - how to enable caching of app JS files
Thanks for the prompt to recheck the doc one more time, seems that I havent tried enabling everything described there yet, will try further experiments.
View ArticleRe: Display Video in SAPUI5
Hi Shreepad, your HTML should be correct. But it's always important to ensure, that all your target platforms are able to process the declared video format. Just have a look at this site for more...
View ArticleRe: Display Video in SAPUI5
Hi Shreepad, As mentioned in the demo kit 'createSamplePanel' is a method defined some where else. To use panel follow the below linkSAPUI5 SDK - Demo Kit Below example with HTML and Panel might...
View ArticleRe: Create a JSON Model from data in file
HI VenkatStill cant get it to work. I have the view defined in a separate folder. so i triedvar json1 = new sap.ui.model.json.JSONModel("./models/data.json"); <note the period before /model> but...
View ArticleHow to get calendar event types shown on the sap.me.Calendar control
I have an OData service feed which provides OverlapCalendarEvent data.I have successfully bound this as an aggregation for the sap.me.OverlapCalendar control. However I would also like present the...
View ArticleRe: Create a JSON Model from data in file
Hi Sandip, Can you post a sanp shot of folder structure. Could try the following too 1. sap.ui.localResources("<project_name>");2. var json1 = new...
View ArticleCannot read property '0' of undefined
HiThis is the error I get when I try to assign an handler to the button press fields: [new sap.ui.commons.TextField({value:"A22",editable:false,layoutData:new...
View ArticleRe: using sap.ui.core.IconPool.getIconURI(iconName) when extending control
answer is to use renderControl() in the renderer. Details found in details
View ArticleRe: ABAP and SAP UI5 program - How to combine?
Hi Daniel, i don''t think it's a good idea to mix these technologies in that way. Please have a look at this best practice. It's better to implement a service facade with SAP NetWeaver Gateway (or in...
View ArticleVizChart not working on integrating UI5 application into portal using URL iView
Hi, I was trying to integrate UI5 application into the portal. However, since our system is not upgraded yet, we cannot use SAP UI5 iViews. I tried using URL iViews, instead. However, it gives the...
View ArticleRe: ABAP and SAP UI5 program - How to combine?
Hi Michael,Interesting. Can you please elaborate on "navigation between apps is implemented via launchpads." ?I am interested to know more about that. @Daniel , Sorry for gatecrashing. ThanksKrishna
View ArticleRe: ABAP and SAP UI5 program - How to combine?
Hi Krishna, this blog posts shows a simple example for creating a new launchpad GUIBB from scratch. At the end, you can start from this page different kind of applications, for example a SAPUI5-App. Of...
View ArticleReplacing or rerendering control
Hi! Is it possible to call a method that rerenders the control that is seen on the screen? Or should i just try to use a approach where I remove the unneeded and insert the needed? Great thanks!Jānis
View ArticleRe: Replacing or rerendering control
Hi Jānis, try sap.ui.getCore().applyChanges(). But use this method carefully. The framework is normally doing all update/refresh stuff and not the application. Regards Michael
View ArticleID in binding template
Hi Friends, I am creating navigationbar items using binding (from json data). Here is how the template looks. var oNavBarItemTemplate = new sap.ui.ux3.NavigationItem({ key : "{key}",...
View ArticleWhy duplicate id
I often counter such issues : create a pageadd a view to the page .add a container to the page add a view to the container remove container all items .create another view instance with same id into...
View ArticleIssue with Custom Tile
I am developing a simple SplitApp application in sapui5. I have a HomeView and a SplitApp in App. I have a custom header in my HomeView with a button on right to navigate to the SplitApp. When I try to...
View Article