• 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. hominid4

    Fixed Admin Element List - Cascade filter Groups when Form is chosen

    Great news, thank you! We have several large apps and this will be really helpful.
  2. hominid4

    Fixed Admin Element List - Cascade filter Groups when Form is chosen

    Sorry if this has already been brought up; and this may be a Joomla thing. Within the admin viewing the Fabrik Elements, pre version 4 when a form is chosen from the Form filter the Groups filter filters down to the groups respective to the chosen form. Since version 4+ that no longer occurs...
  3. hominid4

    Load a field based on the user's access level

    Ah, sorry, my example did indeed leave off the quotes around the placeholder. As achartier mentioned, adding quotes should do the trick so that the undefined placeholder is not breaking and stopping the query at that point. WHERE CASE WHEN (SELECT 1 FROM c6wu7_user_usergroup_map WHERE user_id =...
  4. hominid4

    Load a field based on the user's access level

    Sorry for just now replying on my end, I had to travel for a conference. Could you try the below clause, looks like you have a couple extra parenthesis that shouldn't be there: WHERE CASE WHEN (SELECT 1 FROM c6wu7_user_usergroup_map WHERE user_id = {$my->id} AND group_id IN (11,8)) THEN...
  5. hominid4

    Load a field based on the user's access level

    This is a little snippet that may give a push in one direction from one of our DbJoin elements where the databasejoin element, based on the logged in user's usergroup, either shows all users, a list of company users from a relationship table linked to the logged in user, or only the user is...
  6. hominid4

    How to disable/retire data from list

    We have a few approaches to this on our end but boils down to how troester mentioned, we have disabled/active,non-active/status/etc type of indicators (hidden if needed) depending on the form type and then use our pre-filters within the elements, lists, etc. A large reason why we need to do...
  7. hominid4

    We Need Your Input on Updated Payment Plugins

    I vote as well for the current REST API; a Pay Now option may be a nice addition later down the road, even as a separate plugin (if easier), but on our end can't see where that would be needed currently. As an example with our clients, we use several of Joomdonation's components and their API...
  8. hominid4

    link forms by province

    As mentioned in message #53, if it is fine having the parameter in the URL, allowing you to use the common form, filtering each profession, without all the extra menu items: your_site.com/path_to_form?company___profession=painter
  9. hominid4

    link forms by province

    HA, yes, definitely different ways to skin the "Fabrik-cat"! For me, copying a list is my last resort so not to have all the extra elements, especially in this case with 10 professions (and maybe more added in the future), so I do every trick I can think of before getting to that point. Sorry...
  10. hominid4

    link forms by province

    I didn't read through all the messages in great detail and may be missing something, but I'd create menu items per Profession to the one form, not duplicate the lists, and use the Fabrik Form Option->'Extra Query String' to preselect the Profession element option based on the menu item. If the...
  11. hominid4

    calc element with empty values

    On a side note, when I'm doing calculations I usually have default fallback values, especially when they start out empty. $consumi_f0 = '{simulatore___consumo_f0}' > 0 ? '{simulatore___consumo_f0}' : 0; $consumi_f0 = !empty('{simulatore___consumo_f0}') ? '{simulatore___consumo_f0}' : 0; Or...
  12. hominid4

    [SOLVED] : Repeat Items' rows within the database are inserted out of order

    Ah, well I be. I did try the 'AND' ordering under 'list -> Data -> Data tab -> Order by' but wasn't having luck as of yet. Thanks for the lead however, to try again, I removed all my 'list -> Data -> Data tab -> Order by' that I had in there (event_date DESC, is_copy DESC, activity_date ASC -...
  13. hominid4

    [SOLVED] : Repeat Items' rows within the database are inserted out of order

    I have two lists/tables: table_events id | event_name table_activities id | event_row_id | activity_name | activity_date 'table_activities' is joined into 'table_events' (event_row_id -> id) as a repeat group. When submitting these (for example) actities within the repeate group: Activity 1...
  14. hominid4

    [Solved] Can SEF URLs be simplified?

    Sorry to bump up an older thread, wanted to see I could check if others had any luck removing the "ID" off the URLs as mentioned above, or if by chance that isn't a current option and one potentially in the works for the next version? Thanks!
  15. hominid4

    [Solved] Can SEF URLs be simplified?

    Sorry, I know this is marked as solved, but is there a way to solve this without a 3rd part extension or Robert's 'module in an article' workaround? I too am experiencing the "list/ID" and "form/ID" appended to the menu item alias. My settings: Search Engine Friendly URLs: Yes Use URL...
  16. hominid4

    Joomla4/Fabrik4 PHP Validation setMessage() Call to undefined method error

    Ah, sorry troester, I had pulled up and left up this message thread after achartier replied and didn't see your reply, and my reply referenced his. Sorry about that. I used your solution and it worked perfectly. Thanks!
  17. hominid4

    Joomla4/Fabrik4 PHP Validation setMessage() Call to undefined method error

    Thanks a bunch. I've replaced that line but I am still receiving that same error. I've restarted the server just in case. Regarding that line, my original line before I changed it is on line 113 and is: $return = Php::Eval(['code' => $phpCode, 'vars'=>['data'=>$data]]); I do see the $formData...
  18. hominid4

    Joomla4/Fabrik4 PHP Validation setMessage() Call to undefined method error

    Sorry, this may be posted somewhere and I'm not seeing it, and I may should be posting in the Joomla forum, but does does setMessage work in Joomla4/Fabrik4? I have a fresh Joomla4/Fabrik4 install and when I add setMessage to an element's PHP Validation within the 'PHP code' box I get the...
  19. hominid4

    Form Introduction loadposition

    When editing your form, under the 'Options' tab, is 'Form view' selected as one of the options for 'Process Joomla plugins'?
Back
Top