• Hello Fabrik Community

    Fabrik is now in the hands of the development team that brought you Fabrik for Joomla 4. We have recently transitioned the Fabrik site over to a new server and are busy trying to clean it up. We have upgraded the site to Joomla 4 and are running the latest version of Fabrik 4. We have also upgraded the Xenforo forum software to the latest version. Many of the widgets you might have been used to on the forum are no longer operational, many abandoned by the developers. We hope to bring back some of the important ones as we have time.

    Exciting times to be sure.

    The Fabrik 4.0 Official release is now available. In addition, the Fabrik codebase is now available in a public repository. See the notices about these in the announcements section

    We wish to shout out a very big Thank You to all of you who have made donations. They have really helped. But we can always use more...wink..wink..

    Also a big Thank You to those of you who have been assisting others in the forum. This takes a very big burden off of us as we work on bugs, the website and the future of Fabrik.

URL structure

  • Views Views: 18,056
  • 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