Which version of Umbraco are you using? Also, it would be useful to see what you have tried with Take and Skip, since I would be inclined to offer this (if support is available - did you get errors, no output?):
var nodes = DynamicMode.Children; var pageNodes = nodes.Skip(index).Take(count); foreach (var node in pageNodes) {
}
Where `index` and `count` would come from, say, the query string, or however else you're managing that.
Pagination of DynamicModel.Children - how can I do it?
How can I paginate the results of:
I have tried using Take, Skip etc but none of them work. I would like to paginate the above iteration. How can I go about it?
Which version of Umbraco are you using? Also, it would be useful to see what you have tried with Take and Skip, since I would be inclined to offer this (if support is available - did you get errors, no output?):
Where `index` and `count` would come from, say, the query string, or however else you're managing that.
Thanks Grant.
is working on a reply...