April 10, 200718 yr This should be a simple problem, but I have been scratching my head about it for a good while now. I have a CDML application that collects survey information. There is a link on one of the pages that uses JavaScript to render the results of the survey questions as a simple bar chart. Currently, the link renders the bar chart for ALL records in the database because I'm using "-FindAll": Horizontal Bar Chart I would like the link to render the chart for the current found set, whatever that might be. I have tried replacing "-FindAll" with "-Find" (does the same thing) and "-View" (renders charts with no data). I have also tried using [FMP-CurrentFind], but I am probably not using it properly What is the correct link to make it chart the current found set? Thanks in advance ...
April 11, 200718 yr Check the description of the [FMLink] tag. It allows you to repeat the current request and optionally omit certain parts of it. The idea is that you omit the parts you want to replace and then add the new versions. E.g. if you want to replace the format file: Here ‘r’ removes the format part and then you add the new one.
Create an account or sign in to comment