Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You can maximize the number of records visible on a page by decreasing the record height. To reduce Portal Query Result row heights, locate the Grid.cs file (<portal install>/web/App_Themes/Default/Grid.css) and make the following edits to change the default cell height from 25 to 20 points. First, complete the following change in row 22.:

Code Block
dxgvEditFormDisplayRow_Portal td.dxgv,

.dxgvDataRow_Portal td.dxgv,

.dxgvDataRowAlt_Portal td.dxgv,

.dxgvSelectedRow_Portal td.dxgv,

.dxgvFocusedRow_Portal td.dxgv

{

                overflow: hidden;           

                border-bottom:1px dotted #999999;     

                border-right: 0;

                border-top: 0;

                border-left: 0;
height:20px;
 padding: 0px 7px;
 }
 

...