Variable row Changing row height and scrollable text

Hi
How can I increase the default row height of table and scroll text within the cell? I didn;t find anything in table documentation though.

Hi,

See multiLineCells option: Table - CUBA Platform. Developer’s Manual

If you set width for column all its cells will use standard word wrap for content. Also, you could set different row height using CSS.


  .big-row-table .v-table-cell-content{
    height: 50px;
  }

Hi,

This CSS in not for scrollable text. It simply increases height of row. You should set “big-row-table” as stylename, and you missed space symbol between two classes. If you want to scroll text in a table cell - use generated column with ScrollBoxLayout and Label.

Hi Yuriy
I tried this way, but not working!!

CSS in halo-ext


//Scrollable text in table
//=================================
.big-row-table.v-table-cell-content{
    height: 50px;
  }

XML for the UI


 <table id="myTable"
                   editable="true"
                   height="100%"
                   multiLineCells="true"
                   responsive="true"
                   stylename="v-table-cell-content"
                   width="100%">