• Fabrik4.5.1 for Joomla5.2.4

    Fabrik4.5.1 is out. This update is needed for J!5.2.4

    See Announcements

Search results

  1. B

    Assign default element value from url

    This is useful (and easier to remember than what I had been doing)! I'm going to update the element-default-examples page to share this (thanks)! Normally I had been using something like this: $myInput = \Joomla\CMS\Factory::getApplication()->getInput(); $myParam = $myInput->get('urlparam'...
  2. B

    Using {some url get parameter} in Databasejoin Element -> Data - where for filtering lists

    Hey All! Might be a silly question that has been answered elsewhere, but I have a need to filtre a databasejoin element to only show the values that are associated to a specific column in another table. I specify the column's value within my url where I have a get parameter called "some_id" and...
  3. B

    Solved Can't Create New Lists After update to Fabrik 4.5

    I did a complete database backup of my joomla site (backing up all of my "Fabrik tables" and tables created by adding new lists. Then, I uninstalled Fabrik via Joomla's Extensions Uninstaller and reinstalled Fabrik 4.5 using Joomla's Extensions Installer. After the install, I copied (to the...
  4. B

    Solved Can't Create New Lists After update to Fabrik 4.5

    Hi Troester, Not a copy (original Joomla install of v5.2 with php 8.2 and Fabrik 4.4). I've now updated Joomla to 5.2.2 and updated Fabrik to 4.5. I updated Fabrik from the update prompt I got the other day from my admin home dashboard. Everything else seems to work without issue. I just tried...
  5. B

    Solved Can't Create New Lists After update to Fabrik 4.5

    Hi All, After updating to Fabrik 4.5 (from 4.4), I am no longer able to create new lists. The following error is generated (I turned Joomla's debug on as well as the option to show simple error messages) in order to see the following. An error has occurred. Call Stack # Function Location...
  6. B

    Fixed tabs form problem

    I checked one of my forms from the administrator section and found that the css display property is set to "none" in the default "administrator" template (atum) and the default "site" template (cassiopeia). The CSS file for atum is here: [root]/media/template/administrator/atum/css/template.css...
  7. B

    Fixed tabs form problem

    Have you checked the developer console in your browser to see if there is anything that might be happening? There is a js file called "require.js" that is requested after the form's html is rendered in your browser (near the bottom of the page) and it includes a lot of the js functionality that...
  8. B

    List PHP plugin - accessing the selected rows data

    Updated the page (I didn't realize that we could edit it ourselves and thanks for the heads-up). I'm now using the following and it seems to work without issue. $myInput = \Joomla\CMS\Factory::getApplication()->getInput(); $myParam = $myInput->get('your_url_param', ''); return $myParam;
  9. B

    Modal form bugs

    I had used the inline edit plugin with F3 and Joomla 3 for quick/simple edits as well (and it worked great updating something like a phone number or address). I'm pretty sure it came with a big warning about using it with joined tables (where a list had 1 or more joined tables). Just mentioning...
  10. B

    Error (Unable to load renderer class metas) when opening a from via "Ajaxify Links" = "Yes" (within a modal) from a List Module.

    I've spent the day looking into this and it does appear to be something with the Helix Ultimate template and SP PageBuilder... Using the JA Purity template from Joomlart and the Helix 3 template from JoomShaper I can get a Fabrik list to open a form on the front-end within a modal (Ajaxify...
  11. B

    Modal form bugs

    Did you figure this out? I've been using the form redirect plugin to refresh the page after save.
  12. B

    Error (Unable to load renderer class metas) when opening a from via "Ajaxify Links" = "Yes" (within a modal) from a List Module.

    I was able to open a form within a modal from a Module list (Ajaxify Links) in Joomla 4, Fabrik 4.0Zeta, but since updating to Joomla 4.4 and Fabrik4.1, I cannot get a Fabrik form (neither add nor edit) to load within a modal from a list module. I am currently, using Joomla 5.2 and Fabrik 4.4.1...
  13. B

    List PHP plugin - accessing the selected rows data

    I came across a similar message recently in a Form field element where the Default value was populated (as per Wiki page https://fabrikar.com/forums/index.php?wiki/element-default-examples) via: $myInput = JFactory::getApplication(); $myParam = $myInput->getInput('parent_id',''); return...
  14. B

    SEF urls

    The rewrite originally was used to fix some javascript ajax issues that I was having while trying to open a form from a list module in a modal (Ajaxify).
  15. B

    SEF urls

    I'm assuming that you'll have this already (As per Joomla site instructions): # Support API location /api/ { try_files $uri $uri/ /api/index.php?$args; } # Support Clean (aka Search Engine Friendly) URLs location / { try_files $uri $uri/ /index.php?$args; }...
  16. B

    SEF urls

    I'm using Nginx and had to add rewrite rules to solve similar issues. You should for sure take at a look.
  17. B

    Fixed Paginate form plugin

    I have a Fabrik list module within a page on my site and within the module's advanced settings, I have the options Ajaxify and Ajaxify Links set to "Yes". When I was using Fabrik 4.0Zeta and Joomla 4.4.1, clicking the "Add" button would open a modal with the form. After upgrading to Fabrik 4.2...
  18. B

    autocomplete Ajax URL includes sub-menu path, generates 404

    I'm pretty sure this is related to a similar issue I had. I posted my "workarounds" here. To save you from reading through the thread, I opted to use URL Rewriting to fix the issue. I had also found that modifying the form.js file worked, but wouldn't recommend using that solution...
  19. B

    Fabrik 4.4 is now available for download

    Same result (smooth)! The helixultimate template I was using needed a few tweaks, but Fabrik 4.4 seems to be working fine so far. I updated via Bitbucket download and renewed the extensions. All show version 4.4 except a few (below) that I believe are no longer supported (and can be deleted)...
  20. B

    Conflict between two CCD fields in a list/form using same table as source

    Hey All! I ran into (what I believe is) a similar issue and it was due to the main form (parent table) and associated tables (via dropdown and cascadingdropdown plugin joins) having elements that were the same name (why troester's {thistable} suggestion helped resolve some issues). Simply...
Back
Top