How to set the row height for grid?
How to set the row height for grid?
The grid uses the "natural" height of its cell contents plus some padding:
You can for example change the padding in your own CSS or make the cell content wrap or set a fixed height in the CSS class.Code:.x-grid-cell-inner { overflow: hidden; padding: 3px 6px; white-space: nowrap; }
ExtJS 4 plugins:
varheaders - short/normal/long column header
clearbutton - mouseover clear button in text field
Blog: fit4dev
ExtJS User Group Hamburg
Also take a look at the Ext.grid.View getRowClass method.
Thank you very much, it helped me.
Thanks it helped me to solve the last row visibility problem in pagination grid also.