- Issue created by @Anybody
- 🇩🇪Germany Anybody Porta Westfalica
This only happens with auto_select enabled. So let's merge that into: #3133835: "Automatically submit selection" UX missing visual feedback →
The "View" entityy browser selection widget uses checkboxes / radios (entity_browser_select
views field), but in entity_browser.view.js hides them:
// Hide selection cells (selection column) with checkboxes.
selection_cells.hide();
And they are not actually getting checked because of the event.preventDefault();
call. Nor their :checked
state is syned with the selection below.
This results in bad UX, as these known form selection elements are not used giving important visual feedback to the user.
This only happens with auto_select enabled. So let's merge that into: #3133835: "Automatically submit selection" UX missing visual feedback →