Re: Unable to bind Value in ToolPopup Control
Hi Frank,Thanks for reply, but the problem is: when I add label in sap.ui.ux3.ToolPopup control(by adding label in its content array) it never bind any data from model. But When I Add same label in...
View ArticleRe: SAPUI5 oData Connection Error
Hi Frank I was able to get some data from the https://sapes1.sapdevcenter.com/sap/opu/odata/sap/ZCD204_EPM_DEMO_SRV link also. Upon checking my network console, my code adds a $metadata on my call. So...
View ArticleRe: Makit Column Chart - Two Values per Category
Hey Bibhas thanks for your answer. You used the series functionality by "iterating" over the years, but my data looks like this:var testDate = { mycollection : [ {year : 2007, revenue : 900000, loss:...
View ArticleRe: SAPUI5 iView does not work?
Hi Michael, I didn't understand your point " want to be able to create an iView that "wraps" the web service component and defaults the hostname" can you elaborate more? do you mean customer exit?...
View ArticleRe: Finding a SAP UI5 object its ID
To find a SAPUI5 control by its' ID you can use the call.. var myControl = sap.ui.getCore().byId('myId'); I don't think App Designer is available yet. CheersGraham Robbo
View ArticleSAPUI5 Blackberry 10 issue
I'm currently experimenting with SAPUI5 by using the following example I was able to get a simple application working on mobile devices...
View ArticleRe: Changing color of table cells with JSONModel
Hi Frank, another question regarding your coding:You're setting the JSONModel as model for the core (sap.ui.getCore().setModel(oMappedDataJson);)What is the intention for that? I had thought that the...
View ArticleRe: Unable to bind Value in ToolPopup Control
Hi Sanket, I had the same problem and I solved it setting the data context to the ToolPopUp ID in the controller: sap.ui.getCore().byId("ToolPopUP-content-ID").setBindingContext(dataContext); And now...
View ArticleRe: SAPUI5 oData Connection Error
Hi Melanie, please have a look at our UI5 on Gateway end-to-end tutorial New E2E Tutorial: Gain Hands-on Developer Experience with SAPUI5 and SAP NetWeaver Gateway. It shows how to ...call and address...
View ArticleRe: Changing color of table cells with JSONModel
Hallo Ben, your question refers to custom theming in UI5. Have you read the related document in the UI5 demo kit? https://sapui5.netweaver.ondemand.com/sdk/#docs/guide/ThemingFAQ.html It also...
View ArticleRe: Access denied Error for sap-ui-core.js in IE8 !
Hi Madhumitha, I recommend to make use of the UI5 Simple Proxy servlet for local testing purposes while complying with the same origin policy. Have a look at the corresponding section in my UI5 on...
View ArticleRe: Changing color of table cells with JSONModel
Hi, as a piece of general information:with respect to models you can imagine the core as a sort of root element for all controls. (and as always, child controls inherit this parent model) Setting a...
View ArticleRe: searching for the method similar as getSelectedRow in SAP UI5
Hi Sukanya, You could try using the getContextByIndex method, I think this should be able to refer you back to the correct data in your model, even after your table is sorted, filtered or column...
View ArticleRe: Changing color of table cells with JSONModel
Hi Ben, now replying to your original question... Does the data contain arbitrary colors or would a limited set of colors be sufficient?In the latter case I'd suggest not to use JavaScript-based...
View ArticleRe: $count request does not send the custom headers specified in the oDATA Model
Hi, Yes I set the setCountSupported( false) on the ODATAModel Object and the $count request was not sent. This is a very bad hack. I was hoping that SAPUI5 will take care of sending all the...
View ArticleRe: Unable to bind Value in ToolPopup Control
Hi ManuelThanks for your reply I figure out it by some other mean.In my case I have not added that control in View. Because of which label is not getting bind to Model which is applied to view.I added...
View ArticleRe: Unable to bind Value in ToolPopup Control
Hi Frank,I figure out the problem.It is because I have not added ToolPopup control in view. because of which data is not getting bind to label. As soon as Add control in view it bind data. Silly...
View ArticleRe: Code Help issue with eclipse plugin of SAPUI5
Refer to this oss note Note 1747308 - Installation Guide UI development toolkit for HTML5 (SAPUI5) in this Note there are related notes .Click the latest related note even though in german doesn't...
View ArticleRe: How to find child view from controller and replace it with new content
Hi Sanket, instead of replacing the content of a view, I would recommend to use an application frame like the shell control for a desktop application. There you replace the content of the association...
View ArticleRe: $count request does not send the custom headers specified in the oDATA Model
Hi Amardeep Glad you got it working. Really depends on which definition of hack you are using. Out of interest what is the requirement you are meeting by mandating custom headers on GET calls and how...
View Article