Removing the ALL filter option from GridPlus

I’m pushing ahead with my first proper Source site and wondered if it was possible to use filters without displaying the ALL option?

Thanks

Not via the stack settings but I could give you CSS to hide it (and some js to select a new default on page load).

Thanks. Maybe I’ll look at doing it another way.

Can you consider adding the ability to turn ALL off as part of a future release?

Cheers

Rob

Yes - can consider. In meantime though it really is just a little code that’s required. Just add these snippets to the relevant tabs in RW:

CSS:
ol.filters li:first-child { display: none; }

Javascript:
document.getElementById('first').checked = true;

(replace ‘first’ with the category value that you want to have initially selected).

1 Like

Thanks Stuart. I’ll have an experiment.

Rob