Hello
The ARI Data Tables are working well (with RSJForms) and the page that I have displayed a list of article publications given below
ausframe.org/index.php/publications/aridatatables-rsj-form-data
My issue is that I do not know how to control the order/sequence in which the fields are displayed.
Currently its displayed - RCS, PubMedId, Source, Title, (Authors are not even displayed)
How I want it displayed - Title, Authors, Source, PubMedId, RCS
The SQL query is in the correct order (below), but seems ineffective
SELECT
SubmissionId,
FieldName,
FieldValue
FROM
#__rsform_submission_values
WHERE
FormId = 6
AND
FieldName IN ('PubMedId','Title','Author','Source','RCS')
ORDER BY SubmissionId DESC
How do I display the fields in the order I want? -
Thank you
Kumara