PagedClientCallbackRowset element (List)
Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013
Defines user interface elements to display for accessing subsequent pages when the number of rows returned in a view surpasses the limit set by the RowLimit element.
<PagedClientCallbackRowset>
</PagedClientCallbackRowset>
Note
Most standard Microsoft SharePoint Foundation 2010 list views ignore this element. For more information, see XMLDefinition and CAML View Schema.
Elements and attributes
The following sections describe attributes, child elements, and parent elements.
Attributes
None
Child elements
Numerous
Parent elements
Occurrences
- Minimum: 0
- Maximum: 1
Example
The following example uses the PagedClientCallbackRowset element to define a link for viewing more list data on the subsequent page.
<PagedClientCallbackRowset>
<HTML><![CDATA[<TR><TD></TD><TD align=left Class="ms-vb">]]></HTML>
<Switch>
<Expr>
<GetVar Name="NextPageData" />
</Expr>
<Case Value="" />
<Default>
<HTML><![CDATA[&nbsp;<A HREF="]]></HTML>
<PageUrl HTMLEncode="TRUE" />
<HTML>?</HTML>
<GetVar Name="NextPageData" HTMLEncode="TRUE" />
<HTML><![CDATA[" OnClick='javascript:SubmitFormPost("]]></HTML>
<ScriptQuote NotAddingQuote="TRUE">
<PageUrl />
<HTML>?</HTML>
<GetVar Name="NextPageData" />
</ScriptQuote>
<HTML><![CDATA[");javascript:return false;'>]]></HTML>
<HTML><![CDATA[$Resources:core,groupMore;]]></HTML>
<HTML><![CDATA[</A>&nbsp;]]></HTML>
</Default>
</Switch>
<HTML><![CDATA[</TD></TR>]]></HTML>
</PagedClientCallbackRowset>