PagedClientCallbackRowset Element (List)
Applies to: SharePoint Foundation 2010
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.
Note
Most standard Microsoft SharePoint Foundation 2010 list views ignore this element. For more information, see XMLDefinition and CAML View Schema.
<PagedClientCallbackRowset>
</PagedClientCallbackRowset>
Attributes
Attribute |
Description |
---|---|
None |
N/A |
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[ <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> ]]></HTML>
</Default>
</Switch>
<HTML><![CDATA[</TD></TR>]]></HTML>
</PagedClientCallbackRowset>
See Also
Concepts
XMLDefinition and CAML View Schema