Thank you. Your answers always work first time!
On the calling screen I have a data table. I want one of the fields to link to the detail table on the second screen, so in the SQL for the calling screen I have this:
SELECT '/index.php/items?keyfield='+[keyvalue] as keyfield
,...other fields...
FROM [mastertable]
order by keyfield
In the "Columns settings" section I set "Recognize Links" to "Yes" for this field. It renders a URL but the hovering over the URL gives me:
index.php/items?keyfield=KEYVALUE1
which isn't a valid link in itself. If I could add a "/" at the front it would be. Also I'd like to just display KEYVALUE1 in this field, but it displays a link which includes KEYVALUE1.
What is the right way to set up a clickable link in this field?
Bill