• Payment Plugins Poll

    We need your feedback on the need for updated payment plugins. Please go here and give us your feedback.

  • Joomla 5.1

    For running J!5.1 you must install Fabrik 4.1
    See also Announcements

  • Subscription and download (Fabrik 4.1 for J!4.2+ and J!5.1) are working now

    See Announcement
    Please post subscription questions and issues here

    We have resolved the issue with the J! updater and this will be fixed in the next release.

URL structure

  • Views Views: 18,532
  • Last updated Last updated:
  • 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:
    Code:
    &tmpl=component

    Debugging​

    To view additional debug output showing what Fabrik is doing, you need to:

    1. Set 'allow fabrik debug' to either 'Yes' or 'Debug JS' in Fabrik's global parameters.
    2. Add to the end of the URL the following string:
      Code:
      &fabrikdebug=1
      or
      Code:
      ?fabrikdebug=1
      if there are no query parameters in the URL already.
Back
Top