RowLimit Element

The RowLimit element sets the row limit for a view.

Syntax

<RowLimit
  Paged = "TRUE" | "FALSE">
</RowLimit>

Attributes

Name Description
Paged Optional Boolean. TRUE if the list supports displaying more items page by page. If FALSE or unspecified, then the row limit is absolute and there is no link to see more items.
Parent Elements
View

Remarks

When Paged is set to TRUE, a proper PagedRowset section must be implemented. Otherwise, the server provides a generic implementation of a paged rowset that is defined in STDVIEW.XML.

If Paged is not TRUE and the row limit is exceeded, then the server renders a RowLimitExceeded section of the view if this section is specified. Otherwise, the default behavior is to give no indication to the user that the row limit has been exceeded.

If Paged is TRUE, then the number of items per page will be displayed and a Next button will provide a link to the next set of items.

Example

The following line sets 100 as the row limit and specifies that a link be provided to see items that exceed the limit.

<RowLimit Paged="TRUE">100</RowLimit>