Configure pager in dynamic modules
Hi Sitefinity,
Would it be possible to change this method inside the DynamicContentViewMaster class:
private void ConfigurePager(int virtualItemCount)protected virtual void ConfigurePager(Pager pager, int vrtualItemCount)protected override void ConfigurePager(Telerik.Sitefinity.Web.UI.Pager pager, int virtualItemCount) base.ConfigurePager(pager, virtualItemCount); base.ConfigurePager(pager1, virtualItemCount);Hello Daniel,
I have coordinated your request to our dev teams so they will look into it consider making the method virtual for one of our future releases.
Depending on your scenario you can override the InitializeControls method of the DynamicContentViewMaster in which the ConfigurePager method is called such as:
this.ConfigurePager(this.DataSource.Count());
Regards,
Victor Velev
the Telerik team