Main (HTML) URLs
To open a list in your browser you should use this URL, replacing 'X' with the list id you want to display:
Code:
index.php?option=com_fabrik&view=list&listid=X
To view a form in your browser you should use this URL, replacing 'X" with the form id you want to display:
Code:
index.php?option=com_fabrik&view=form&formid=X
If you want to load a specific row for editing then use this url, replacing 'Y' with the row's id:
Code:
index.php?option=com_fabrik&view=form&formid=X&rowid=Y
To view a detailed view of the same row, replace the view variable, 'form' with 'details':
Code:
index.php?option=com_fabrik&view=details&formid=1&rowid=1
PDF URLs
To view a PDF of a form use:
Code:
index.php?option=com_fabrik&view=form&format=pdf&formid=X&rowid=Y
PDF of details view:
Code:
index.php?option=com_fabrik&view=details&format=pdf&formid=X&rowid=Y
PDF list view:
Code:
index.php?option=com_fabrik&format=pdf&view=list&listid=X
To load the Component content only - without the surrounding Joomla template, add to your URL:
Debugging
To view additional debug output showing what Fabrik is doing, you need to:
- Set 'allow fabrik debug' to either 'Yes' or 'Debug JS' in Fabrik's global parameters.
- Add to the end of the URL the following string:
or
if there are no query parameters in the URL already.