Vaughan Posted November 14, 2000 Posted November 14, 2000 No need for you to worry about all this stuff. Just use the [FMP-LinkPrevious] and [FMP-LinkNext] CDML tags. These are used thus: [FMP-LinkNext]Next Record[/FMP-LinkNext]
marc93 Posted November 15, 2000 Posted November 15, 2000 I want to navigate between records with a next and previous link. However, with the first list of records the "previous link" has to be omitted and with the last records the "next link". For the "previous link" I use the code: [FMP-If: RangeStart .gt. 1] previous [/FMP-If] This works. For the "next link" I want to use the code: [FMP-If: RangeEnd .lt. CurrentFoundCount] next [/FMP-If] This does not work. Is there an error or another way around that I seem to be missing? ------------------
Rainer Posted November 21, 2000 Posted November 21, 2000 Functions like CurrentFoundCount can't be used as the second parameter of a comparison. Unfortunately that means that you can't compare them with each other.
Recommended Posts
This topic is 8837 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now