London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
I think the problem is with DataBinding. Try and set the DataSource from code-behind instead:
<EPiServer:PageList runat="server" ID="BlogPostList" MaxCount="<%# MaxCount %>" Paging="true" PagesPerPagingItem="1"> <ItemTemplate> <hr /> <Blog:ItemSummary runat="server" SelectedPage="<%# Container.CurrentPage %>" SummaryTextLength="<%# SummaryTextLength %>" ShowImage="false" ShowWriter="false" /> </ItemTemplate> </EPiServer:PageList>
protected override void OnLoad(EventArgs e) { base.OnLoad(e); BlogPostList.DataSource = BlogItems; ... }
Hello Frederik,
Thats great; seems to work.
Thanks again for your help.
Andy