Hello,
I have a Dash DataTable with a column that contains a boolean value:

The original values were 0 and 1 but I transformed them into the X n V emojis shown for a better UX.
I have native filtering enabled on my DataTable. How can I let users filter by X or V? Is there a way for me to replace the default text filter with a dropwdown list? Or 2 radio buttons?
Can I get this done without having to dive into React and overriding the relevant React components?
Thanks,
urig
PS - I’ve tried setting the value using a custom javascript script but the results is that I see that the value is set, filtering doesn’t work and after a second, the value is erased (?!)
window.setTimeout(work, 2000)
function work() {
filter = document.querySelector('*[class="dash-filter column-5"] div input[type="text"]')
filter.value = "✔️";
}