Tell Glide how you use CSS

Hi, a nice CSS trick thanks to @ThinhDinh to submit an Edit screen even if required choice components are not selected.

Use case: in an Edit screen, wish to display many choice components in bar for UX matters (instead of dropdown menu), but with 5 items.
→ This implies to make the choice component required, even if it is not mandatory in reality
→ This implies that the User is unable to submit/done the Edit screen if each component have not been selected.

https://community.glideapps.com/t/edit-screen-or-visibility-conditions-on-entry-ones/29564/12?u=ays_0908

(nb: CSS to be created before choice components are created)


[data-test="nav-button-Done"] {
pointer-events: auto;
}
1 Like