PadBottom

Shows or hides empty rows in a list.

Values

This property can take one of the following values:

  • true(default). Shows empty rows. In this case, the number of rows shown always equals the value set in the RowsPerScreen property.
  • false. Hides empty rows.
Examples

List = CRM.GetBlock('companygrid');
List.RowsPerScreen = 8;
List.PadBottom = false;
CRM.AddContent(List.Execute());
Response.Write(CRM.GetPage());

Hides empty rows. The column heading is displayed even if there are no rows to display.