Search results

  1. T

    Problem with creating PDF when site has SSL

    I'll explain a little more. It's our local LAN with a domain server. If you want to have other local servers running with SSL, you have to create those SSL certificates on local domain server. which we did. Also, since we are no official CA, all CA certificates have to be installed manually on...
  2. T

    Problem with creating PDF when site has SSL

    I'm sorry I've been a bit chaotic (it's frustration mainly talking). I enabled SSL for the whole site in Joomla general settings. When I wrote about debugging, I meant Fabrik PDF debugging. Switching Verify SSL Peers on and off didn't change anything. PDF creator just ignores the above...
  3. T

    Problem with creating PDF when site has SSL

    Hi, First thing first: Joomla 5.2.3, Fabrik 4.5, PHP 8.3.16 I've created few VERY complex sites using Fabrik, but they all so far were run locally, using LAN IPs as an address. However, since web browsers are so strict now that require to confirm every PDF download, I've decided to finally...
  4. T

    Solved Local and external database connections in Joomla 5.x

    Thank you very much! At last I know what I'm doing.
  5. T

    Solved Local and external database connections in Joomla 5.x

    Hi, regarding Joomla 5, when I want to connect to a local database, I can use: 1) $db = Joomla\CMS\Factory::getContainer()->get('DatabaseDriver'); $query = $db->createQuery(); or 2) $db = FabrikWorker::getDbo(); $query = $db->getQuery(true); because 3) $db = JFactory::getDbo(); $query =...
  6. T

    Fixed Wrong (?) class in field filter

    It's working! Thank you very much!
  7. T

    Fixed Wrong (?) class in field filter

    The case: when I have a field element and set its filter to 'dropdown', all works correctly. But when I have an element jdate and also set its filter to 'dropdown', its frontend select has class 'form-select' instead of regular filter select class 'form-select-sm'. So the result is - dropdown...
  8. T

    Positioning form's spinner

    I have a form PHP script that is launched during onAfterProcess. It's pretty complex, so the spinner shows for sometimes even a minute. The problem is: the form itself is quite long and the spinner shows in the middle of it (vertically), so I have to scroll up to be able to even see it. Is there...
  9. T

    Solved Best method to achieve desired result?

    1) Create list with the invoices and add databasejoin element with clients. 2) Create calc element(s) that will retrieve desired clients' data based on databasejoin value.
  10. T

    Workaround Problem with auto-complete filter

    Looks like you just can't have everything. As I don't care about those suffixes (like 'list/listnumber'), I'll just be hacking the Fabrick core like I do after each update anyway. I'm happy I know what to modify in the first place, so thank you once again for that.
  11. T

    Workaround Problem with auto-complete filter

    Yes! This is exactly it. Switching line 210 make auto-complete work or not, so yeah, it's the culprit. Thank you VERY much!!!
  12. T

    Workaround Problem with auto-complete filter

    I had Joomla 5.0.x and Fabrik 4 - it was working. Then upgraded Joomla to 5.1.1 - still was working. Then upgraded Fabrik to 4.1 and it stopped working. I'm paranoid, so I have everyday backups of my sites kept for over a year, and can go back to any point and simulate any scenario. This way I...
  13. T

    Workaround Problem with auto-complete filter

    I've changed the file the way you suggested, but no luck - I still get that 404 error. Looks like I have to disable 'Use URL Rewriting' for the time being, which is really dirty workaround :-(
  14. T

    Workaround Problem with auto-complete filter

    Hi, I have a site with Fabrik list (call it A) in my main menu (1st level) and another Fabrik list B in submenu. List B has thousands of records, so I chose auto-complete as a list element (field) filter. It all worked great until I updated Fabrik from 4.0 to 4.1. (I have Joomla 5.1.1). Now...
  15. T

    Fixed Cascading Dropdowns and checkbox list anomaly

    Aaaand it works like a charm now! You're the best :)
  16. T

    Fixed Cascading Dropdowns and checkbox list anomaly

    Hi, I know CDD is rather fussy, so I'm really sorry I have to report this anomaly. How to reproduce: set CDD rendering to checkbox list and - let's say' - 4 options per row. Be sure to have more options to display, so there are at least two rows with options visible. Expected behaviour: 4...
  17. T

    Fixed Picklist element ignores colours

    Of course you're right. I was looking explicitely for 'rgb...' Thank you! I can finally work on a picklist without a vomit bag at hand.
  18. T

    Fixed Picklist element ignores colours

    Hi, I use picklist element and whatever I do, it just ignores params 'Hover colour' and 'Background hover colour'. There is always this grandma panties-like pink, which is added by some JS. I mean, when the element loads, there's just ul tag with classes. When I grab one of the options to drag...
  19. T

    Solved Sum of values from repeat group in detail view

    Hi, I use calc element (with AJAX! - it's fundamental in my case) for years now, including summing values from repeat groups. However now I have to show form with such a calc in detail view and... it just doesn't work. Form view = it's working, detail view = nope. My code: $overall =...
  20. T

    Disappearing labels with tooltips

    List labels (no tooltips) = all good. Parent/child icons = disappearing anomally on hover. Tested browsers: Chrome, Firefox, Edge - each one has these disappearing labels.
Back
Top