Wednesday, April 2, 2014

SAPUI5: Table: how to bind a list into a cell of a Table?

see the discussion:

http://scn.sap.com/message/14930826#14930826

SAPUI5: How to set the appearance of Table control?

http://scn.sap.com/message/14928820


In short:

The demo uses Blue Crystal theme, hence it shows the vertical lines between the columns of the table. If you are using Gold Reflection theme, then to get the vertical lines, you need to play with CSS.

Add the below snippet of CSS between <head></head> of your html file.
<style>
      .sapUiTableTr>td {
                      border-right: 1px solid #cccccc !important;
      }
</style>

Wednesday, March 12, 2014

SAPUI5: how to decide which type of view (html, xml, JS) be used in your app?

see

http://www.linkedin.com/groupItem?view=&gid=4568273&type=member&item=5816883703124619265&qid=8a015484-92d9-4ae6-96cc-1e9a059e8f9d&trk=groups_search_item_list-0-b-ttl

SAPUI5 & SAP Gatway: What is the best solution for user authentication for Sapui5 apps to access backend vis Gateway?

see

http://www.linkedin.com/groupItem?view=&gid=4568273&type=member&item=5826977459018428419&qid=d54513df-a31a-409a-8008-acca645dea52&trk=groups_search_item_list-0-b-ttl

SAPUI5: How to disable caching in IE browser while doing ODate services?

http://www.linkedin.com/groupItem?view=&gid=4568273&type=member&item=5836856862074507268&qid=9cfe7f02-2de4-484d-bcb9-522bc496f817&trk=groups_search_item_list-0-b-ttl

SAPUI5: How to run a sapui5 app packed with PhoneGap on iPhone?

http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&discussionID=5842298489916129283&gid=4568273&goback=%2Egde_4568273_member_5849070112413347841#commentID_null

SAPUI5: How to evaluate a sapui5 app in terms of memory consumption for source code and excution?

see answers below:

http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&discussionID=5846242821371105281&gid=4568273&goback=%2Egde_4568273_member_5849070112413347841#commentID_null

SAPUI5: How to directly bind two data properties into one control property using OData model?

see the ansers in the link:

http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&discussionID=5849070112413347841&gid=4568273&commentID=5849107259505811456&trk=view_disc&fromEmail=&ut=0I2h6UG4XXGC81

Tuesday, February 18, 2014

SAPUI5: How to show an animation of a progressing indicator While processing OData request?

 Sr. Sys Developer●Enterprise Mobility●SAP●Android●iOS●WebTop Contributor

In my SAPUI5 app, I made an animated progressing indicator. However, if I start the animation before sending the OData request or start it in the event of requestSent handler function, the animation does not work. Do I have to run the indicator in another thread, if so, how to doi it?

Answer:

In sapui5 1.19.1, the new .create() API is

     oODModel.create('myDataSet',oEntry, null, onSuccess, onError, bAsyn);

which will solve the issue by setting the last param to true. I will update my SAPUI5 plugin and try it.