Hello again!
I have worked through the first half of the "Categories" (a couple of threads ago)coding with complete success. Again thank you for that! However, I cannot get the second half working, where it calls the complete "Article". Here is what I have that works:
In Column Settings "Format":
<a href="index.php?option=com_content&view=article&id=74&selCatId={$columns:id}">{$value}</a>
This works excellent!
Then in the SQL Query:
Code: |
SELECT
SR.name,
SR.value,
R.id
FROM
#__facileforms_subrecords SR LEFT JOIN jos_facileforms_records R
ON SR.record = R.id
WHERE
R.user_id = {$UserId}
AND
SR.title IN ('Project Title')
ORDER BY
SR.id
|
This also does what is needs to do. You guys set me up with this a couple of days ago!
However, I can't come up with the correct coding or whatever to make the actual "Article" (my actual form with the complete data set) appear. I have tried a number a variances from what you supplied, but it is just not working for me. Here is what I have:
Code: |
SELECT id,title FROM #__content WHERE catid = {$REQUEST:selCatId|filter:int}
|
I just can't make the connection on how to make it work. If you could help out, it would be greatly appreciated.
Thanks in advanced!!