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.
<style>
      .sapUiTableTr>td {
                      border-right: 1px solid #cccccc !important;
      }
</style>

No comments:

Post a Comment