I'm using text/xml transformation in Repeater that is connected to Pages Data Source.
Is there any possibility to get Pages Data Source items count from Repeater's transformation or in content after field
Hi again,
I think you could use:
{% DataItemCount %}
David
If Repeater's property Select Top N will have any value
Your solution will return Repeaters Select Top N value but not Pages Data Source items count
Technically if you have a select statement with SELECT TOP N... in place, the datasource and the repeater will only ever return that value or less. So you need to have another query run to do a count on all the items you're looking for.
SELECT TOP N...
Please, sign in to be able to submit a new answer.