Friday, May 2, 2014
Wednesday, April 2, 2014
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.
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>
Friday, March 21, 2014
Thursday, March 20, 2014
Wednesday, March 12, 2014
SAPUI5: How to directly bind two data properties into one control property using OData model?
Tuesday, February 18, 2014
SAPUI5: How to show an animation of a progressing indicator While processing OData request?
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
which will solve the issue by setting the last param to true. I will update my SAPUI5 plugin and try it.
Subscribe to:
Posts (Atom)