Form Field: Add State modal window Date field does not work

Created on 1 April 2025, 3 days ago

Problem/Motivation

I would like to use Form Field: Add State to hide field based on value of another field in modal(dialog) window.

Everything works as expected except the date fields. Date field works fine for the standard direct to page but when we tried with off-canvas or dialog window this one always fails.

However after hours of playing It was discovered it works as expected for Gin Admin theme only. However when you use the same config for any other theme (we have tested with olivero, claro, bartik, etc) and every theme has the same issue, it works for all fileds, except the date one, but it works fine for gin theme for some unknown reason.

Hence I am not sure if this is ECA related, but probably it handles dates fields differently. I have tried with 10 different types of fields and everything works as expected, just the date field has an issue. Maybe because the default field has id like "field_abc[0][value]" but the date has [field_date[0][value][date] or [time].

Attached you can find video where I tested with olivero + gin and also I am attaching eca model so it is possible to test it easily. In model I have used simple extra field and rendered link in modal.

Is it possible that JQuery selector needs to be different for the date field ? I have spent hours to fix this, but with no luck... I do really need to hide several date fields for one customer. It works fine when I use "form field : set disabled" but not for "form field: add state".

πŸ’¬ Support request
Status

Active

Version

3.0

Component

Code

Created by

πŸ‡ΈπŸ‡°Slovakia coaston

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @coaston
  • πŸ‡ΈπŸ‡°Slovakia coaston
  • πŸ‡©πŸ‡ͺGermany jurgenhaas Gottmadingen

    Your last sentence is extremely helpful. The difference between the 2 is this:

    "Form field: set disabled" uses $element = &$this->getTargetElement() to find the form element to deal with.

    "Form field: add state" uses the same statement, followed by $element = &$this->jumpToFirstFieldChild($element) which receives the first field child to which the state flag is then added.

    I can see how this may behave different if you have a multi-value field, like date fields with date and time inputs. I wonder if this should be resolved by also supporting state for containers, like e.g. a wrapper around a complex widget?

  • πŸ‡ΈπŸ‡°Slovakia coaston

    thank you, it seems you are right.

    I have also tested with custom_field β†’ module and it does not hide the field by default when the widget is "Stacked" however when you change it to Flaxbox and use "fieldset" or "details" type of Wrapper it works.

    So I wanted to replicate the same as you suggested with the date and for me the fastest way is to use field_group β†’ module, so I added field group HTML element , with "div" element and added extra CSS class "datewrapper" and added CSS like

    .datewrapper {
      padding: 10px;
      border: 1px solid #ccc;
      background-color: #f9f9f9;
    }

    However I can still see the date field , of course the css is applied correctly, but still not working with visibility. I have tried also with fieldset type of field group with the same result :(

    Any suggestion? Any advice would be greatly appreciated.

  • πŸ‡ΈπŸ‡°Slovakia coaston

    It works now..yupii.

    Instead of field group i used ECA directly.

    Form:add grouping element and I have added element name like "datex" , title and fields just field_date so I was able to use element name "datex" as my field name of Add state.

    However as Title is required i was not happy with details wrapper so I added additional "form: add container element" and element name "datex" so now everything works as expected.

    However I am not sure how this "form: add container element" works.
    I think I do not need both forms at the same time but currently this is my workaround.

    Do you think there can be any patch created which will add container to date fields by default so no need to do such "workarounds"?

Production build 0.71.5 2024