Search results

  1. elmarra

    Workaround Problems with the juser plugin after after upgrading Joomla to Joomla! 5.2.3

    In my system.J 5.2.3I do not get the error during editing.I have the "password reset field" element. Set to "yes/no".With ACL permissions set to a specific group.So the user does not see the element in their form.And during saving, I have no issues. I get the same error as you if:Setting the...
  2. elmarra

    Workaround Problems with the juser plugin after after upgrading Joomla to Joomla! 5.2.3

    You are getting this error because, as I see from your screenshots, in the parameter 'password Reset Field' you have the element 'teste'. Clearly, you are passing a null (empty) value while the database expects an integer value. What element is it? Also, that field is optional. If you need to...
  3. elmarra

    Solved how to edit columns on form's "Details view"

    How are you doing this? For example col-sm-6 is set From group settings > layout > columns = 2 If you set 3 it returns col-sm-4 etc And if set to 1, it will be empty and therefore full width. Please provide some more details and we can help you more easily.
  4. elmarra

    Feature Request: Always show customtop position

    As I mentioned in the last post. I fixed and isolated the issue. And this was available in the next release. (alternatively in the meantime you can update via Git). So either do a full update. Or update this. https://bitbucket.org/fabrikar/fabrik/commits/f9f2e9111e4b3143e94c070bdc2951c8f2c43b31...
  5. elmarra

    Fixed Store row failed: Incorrect integer value: '' for column ``.``.`view_level` at row 1 ;

    The problem seems to be that you are inserting an empty value into a column that expects an integer value. How do you try to insert data into that column? What element is it?
  6. elmarra

    Solved how to edit columns on form's "Details view"

    In Fabrik, you can create custom templates for lists, forms, and details. https://www.fabrikar.com/forums/index.php?wiki/form-and-details-templates/ You can find them in: components/com_fabrik/views/details (in your case). You'll find a bootstrap template that you can also create others from...
  7. elmarra

    Solved Rename uploadfile as id row

    $name = $formModel->getElementData('elenco_venditori___id'); $ext = JFile::getExt($filename); return $name . '.' . $ext; This should automatically add the extension name instead
  8. elmarra

    Solved Rename uploadfile as id row

    $name = $formModel->getElementData('elenco_venditori___id'); return $name . '.pdf'; pdf is an example. But in this way you have to make sure that the uploaded files are of the same extension. Example, if you want to get the file name renamed with "pdf", make sure that the uploaded files are...
  9. elmarra

    Solved jDate element's locale

    This was due to the template (helix ultimate). I had also wasted too much time on it, to then understand that it was due to him.
  10. elmarra

    Solved jDate element's locale

    In Italian for me it is Monday. If set in English it is Sunday the first day. it is due to geolocation
  11. elmarra

    Solved jDate element's locale

    plugins/system/helixultimate/overrides/layouts/joomla/form/field/calendar.php change the file. I had already reported this to the helix developers some time ago. But they still haven't updated the template, to solve this problem. I don't know
  12. elmarra

    Solved jDate element's locale

    Front o back-end? Also what template are you using? I had a similar problem it was due to the template (helix)
  13. elmarra

    What's next for full calendar

    To inspect the tooltip's CSS and keep it active when moving the mouse, you need to select an event in the console and disable the "mouse out" option. This will keep the tooltip always visible (you first need to hover over it to activate it). Then, you can inspect it. (See the image.) Do you...
  14. elmarra

    EndDate Handling

    I believe that as my final consideration: If in the settings, I set an end date element, and then in the form, I leave this field empty, it means that it is for a "specific reason." Therefore, handle it in JS or PHP. What should FC do? Show me the event as if only the start date is set. Then...
  15. elmarra

    EndDate Handling

    From my point of view. As Troester mentioned above. Every use case is different. So if there is an end date element in the viz settings, and this is empty, only show the start date in the calendar. Then in the form settings, using JS or PHP, set what to obtain in that case. For...
  16. elmarra

    Fixed Fabrik 4.5 new css hides Cassiopeia menu

    Yes, as I was saying, I have isolated the problem. In the next release of Fabrik, it will be automatically fixed. For now, you just need to replace that CSS as mentioned above. Thank you all.
  17. elmarra

    Fixed How to Enable Responsive Desktop View for Fabrik Dropdowns on Mobile?

    I know, I did a search online last night, and that's what I found, and first try it worked.
  18. elmarra

    Fixed How to Enable Responsive Desktop View for Fabrik Dropdowns on Mobile?

    Sorry, I forgot to attach the link https://realize.be/blog/mobile-support-chosen there is the complete attachment of the file. I tried it and it worked for me.
  19. elmarra

    Fixed How to Enable Responsive Desktop View for Fabrik Dropdowns on Mobile?

    Just last night I came across this. I found a solution online that worked on smartphones for me. This worked too
Back
Top