Hi,
When I use cmsrepeater:
<cms:cmsrepeater ID="rpTags" runat="server" OrderBy="Tagname"
ClassNames="Penguin.Tag" Path="/Content/Tags/%" SelectTopN ="500"
StopProcessing ="true" EnablePaging ="true" PagerControl-PageSize="10"
TransformationName="Penguin.Tag.TestPaging" PagerControl-PagingMode="PostBack" />
with code behind:
//this.rpTags.WhereCondition could be complicated...
this.rpTags.StopProcessing = false;
this.rpTags.ReloadData(true);
The pagination doesn't work well when using ReloadData(true)
method with PagingMode="PostBack"