Re: Access denied Error for sap-ui-core.js in IE8 !
Hi Bertam, I could not mark your answer as "correct " since i did not initiate the discussion .But your reply was very useful. Is deploying the SAP UI 5 app in the ABAP server is the only way the issue...
View ArticleUI5 1.12.2?
Hi, The documentation from https://sapui5.hana.ondemand.com/sdk/#docs/guide/Documentation.html says the runtime version is 1.12.2 but the download link from...
View ArticleNavigation Bar Issues in iOS
Hi, I'm building a ui5 app (1.12.1) on ios and encountered this issue where the navigation bar is being cutoff when the keyboard shows up during editing an input element. Original state of the screen:...
View ArticleRe: Table Paginator Issue
Hi Arush, I'm not aware of a table event that you could attach a handler to for getting called when the page changes. You could register a handler to the "click" event for the whole table via the...
View ArticleRe: sapui5 Combination of abap development documents required
Dear Jogu. You might find this tutorial helpful: End to End Development Example with SAP NetWeaver 7.4 & SAP HANAIt is part of our Cross-Technology Developer Center Best Regards.Uwe
View ArticleRe: How to find Project name of default ODATA services?
Hi Harsha,are you looking for the oData services provided by the "SAP Netweaver Gateway Service Consumption System"? In that case, you should be able to find more information in the document...
View ArticleRe: Onclick Action on Carousel image
Hi Zaghman, what you are doing with this code is trying to register an event handler to the "click" event of the commons.Carousel. However, that control does not have such an event. This is why nothing...
View ArticleRe: Onclick Action on Carousel image
Hi Andreas Yes, you right. I've added all the images in carousel and want to implement on click event on carousel to get the selected image name or src. Actually, When user select or click on any...
View ArticleRe: Onclick Action on Carousel image
I have implemented the following method. So, how can i get the selected image name from carousalCarousel.attachBrowserEvent("click", function(){ // need to get image name selected by user...
View ArticleRe: Onclick Action on Carousel image
Hi Zaghman, if you follow your option 1, you can get a reference of the image either by "inspecting" the event parameter that you named "oControlEvent" or by going via the sap.ui.getCore().byId()...
View ArticleRe: Onclick Action on Carousel image
Hi, as Frank wrote: the local variable "img" is constantly being updated in your loop. This is a JS language speciality. You could put it into a closure to overcome this tricky situation.Or as Frank...
View ArticleRe: Onclick Action on Carousel image
Thank you both.It has been sorted by using oCarousel.attachBrowserEvent("click", function(oControlEvent){ alert(oControlEvent.srcElement.id) });...
View ArticleRe: FileUploader and X-CSRF-Token?
Hi DanielFurther to the suggestion i made in http://scn.sap.com/thread/3383994 that I didn't think this was possible with the FileUploader control, I found some time today to investigate further. I...
View ArticleRe: Onclick Action on Carousel image
Ok, but in this case be aware that the ID might be NOT an image ID, but the ID of something else, e.g. parts of the Carousel. RegardsAndreas
View ArticleRe: Server-side example for the FileUploader UI element
Hi, In one of my UI5 application, I will have to read data from .txt file and send that data as concatenated string to SAP Gateway Rest Service. (in my input file, I have one field (column) only) I...
View ArticleHow to set style/Class for parent DOM Element
Hi all,I am using SAPUI5 1.12.1 version In vertical layout I am adding one labelI want to set class to parent element of label (Not to vertical layout control. But to the div which content label. )for...
View ArticleRe: FileUploader and X-CSRF-Token?
Hi John,thanks for your answer. The solution works fine - in Chrome, but it fails in IE9. IE9 cannot do this:var file = jQuery.sap.domById(this.getId() + "-fu").files[0];This line returns undefined. Do...
View ArticleRe: Server-side example for the FileUploader UI element
Hi Naveen, Where is the file? if it on the uses Computer, have a look at the following example, the text file is selected by the user and the contents are output to a textView...
View Article