How to change Pager caption - Forum

Forum Navigation
You need to log in to create posts and topics.

How to change Pager caption

How can I change Pager's next-caption and prev-caption with Javascript or actions?

@bca07313 just use a variable for each caption, for example [prev] and [next].
Then use NeoScript to change their values whenever you need to:

SetVar [prev] "Previous"
SetVar [next] "Next"

Or if you prefer JavaScript:

BeginJS
   $App.prev="Previous";
   $App.next="Next";
EndJS

That's all.

javadrajabihakami has reacted to this post.
javadrajabihakami

Thanks to you, I was able to do it.