I anm trying to get the direct pager template to work in the Universal Pager, but it never seems to display for me.
I have put the following code into it's transformation to test:
<span class="results-count">Results 1 - 12 of 100000</span>
and it doesn't show on the page, or when I view source.
I then tried adding the following code to the layout of the unipager:
<cms:UniPager ID="pagerElem" runat="server" >
<DirectPageTemplate>
<span class="results-count">Results 1 - 12 of 100000</span>
</DirectPageTemplate>
</cms:UniPager>
This also does not show on the page.
How everything is hooked up:
I have a custom table datasource,
Filter,
basic repeater,
and 2x unipager (one on top and one underneath the basic repeater)
The filter repeater and datasouurce work fine, and I get results and filtered results when required. The uni pager shows the correct number of pages, as well as the next, las buttons etc.
It' sonly the Direct Page Transformation that isn't working.
Am i missing something?