Support Select All in Tags Custom Cell
See original GitHub issueI’m using tags-cell
to show tags and I need an option to Select All.
I implemented it using workarounds - tried both options but both have UX issues:
-
Have a default value of
[]
, and if value is[]
, renderAll
tag. The issue with that is that it’s not clear to my users that if you deselect all tags in the edit overlay, then it will change back toAll
. -
Have a default value of
['All']
and haveAll
inpossibleTags
as well. The issue with that is that to select a specific tag you have to select the desired tag but then also deselectAll
, otherwise both will be selected.
Is there an easy way for you to add support for Select All
in the tags cell edit popup?
Or maybe give any callback API for when a user selects a tag in that popup, so that I can deselect All
whenever any other tag is selected?
Thanks a lot ❤️
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:7 (4 by maintainers)
Top GitHub Comments
I just added validateCell which should allow you to fix this.
The preview value is now passed as the third argument.