PagedClientCallbackRowset Element (View)

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

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>

Attributes

Attribute

Description

None

N/A

Child Elements

Numerous

Parent Elements

View, ViewStyle

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>