Compartilhar via


Elemento PagedRowset (Exibir)

Processa CAML (de colaboração de aplicativo de marcação de idioma) em uma exibição, a execução se mais itens são retornados na exibição do que o limite especificado linha para a exibição.

                    
                      
<PagedRowset>
</PagedRowset>
                    

Atributos

Atributo Descrição

Nenhum

N/A

Elementos filho

Diversos

Elementos pai

Modo de exibição, ViewStyle

Ocorrências

No mínimo: 0

Máximo: 1

Comentários

Este elemento fornece uma seção da exibição que é processada se houver more than uma página de dados. Em um elemento PagedRowset PagedRowset, a seguinte variáveis podem ser implementadas:

  • <GetVar name="PageFirstRow"/> returns the item number of the first item on the current page.

  • <GetVar name="PageLastRow"/> returns the item number of the last item on the current page.

  • <GetVar name="NextPageData"/> returns the information that must be passed along in the URL so that the next page of data to be displayed can be determined.

Exemplo

O seguinte exemplo usa o elemento PagedRowset PagedRowset para exibir o seqüência de caracteres "(itens 1 a N )" onde N representa a atual configuração para o elemento 09906cae-0023-4a4f-94e5-4e167fd08773 RowLimit. O exemplo também exibe 'Avançar' e um ícone representando 'Avançar', que são os dois hiperlinks para o atual página exibição com informações necessárias para exibir o próximo 100 itens.

                    
                    
                    <PagedRowset>
   <HTML><![CDATA[ <TABLE width="100%" border=0><TR><TD align=right 
      Class="ms-vb"> ]]></HTML>
   <HTML>(Items</HTML>
   <HTML><![CDATA[ &nbsp; ]]></HTML>
   <GetVar name="PageFirstRow" HTMLEncode="TRUE" />
   <HTML><![CDATA[ &nbsp; ]]></HTML>
   <HTML>to</HTML>
   <HTML><![CDATA[ &nbsp; ]]></HTML>
   <GetVar name="PageLastRow" HTMLEncode="TRUE" />
   <HTML>)</HTML>
   <HTML><![CDATA[ &nbsp;<A HREF="javascript:" 
      OnClick='javascript:SubmitFormPost(" ]]></HTML>
   <ScriptQuote NotAddingQuote="TRUE">
      <PageUrl />
      <HTML>?</HTML>
      <GetVar name="NextPageData" />
   </ScriptQuote>
   <HTML><![CDATA[ ");javascript:return false;'> ]]></HTML>
   <HTML>Next</HTML>
   <HTML><![CDATA[ </A> <A HREF="javascript:" 
      OnClick='javascript:SubmitFormPost(" ]]></HTML>
   <ScriptQuote NotAddingQuote="TRUE">
      <PageUrl />
      <HTML>?</HTML>
      <GetVar name="NextPageData" />
   </ScriptQuote>
   <HTML><![CDATA[ ");javascript:return false;'> ]]></HTML>
   <HTML><![CDATA[ <img src=" ]]></HTML>
   <ImagesPath />
   <HTML><![CDATA[ /next.gif" border=0></A>&nbsp;
      </TD></TR></TABLE> ]]></HTML>
</PagedRowset>