Search results

  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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;
  7. 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...
  8. 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...
  9. B

    Modal form bugs

    Did you figure this out? I've been using the form redirect plugin to refresh the page after save.
  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 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...
  11. 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...
  12. 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).
  13. 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; }...
  14. 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.
  15. 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...
  16. 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...
  17. 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)...
  18. 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...
  19. B

    Detecting if a form was submitted via Save, Apply or Copy

    Hey All! I've been working on an app that needs to send the values entered into a Fabrik form to a script that builds a DocuSign envelope and sends it for signatures via DocuSign's API. The Fabrik form is multi-page and it is possible for a user to send a completed form to DocuSign when...
  20. B

    ERROR / ISSUE in next page in multi page Form.

    *** Update to above *** I'm sure this is a terrible hack, but my fix is one of two options: 1. I edited line 700 in media/com_fabrik/js/form.js. I modified the value for the variable "url" from: url = 'index.php?option=com_fabrik&format=raw&task=form.ajax_validate&form_id=' + this.id; to...
Back
Top