Is it possible to step by step build and save a filter into the text field of a state tiddler using select widget

First, some other filter-builders I’ve come across, if you’d like to see how other developers have approached it:

Re: your specific question: You can use the actions attribute of a $select widget to modify a separate field (or tiddler). For instance, you could define an $action-setfield widget to modify/append your selection(s) to the existing filter, as Mat suggests.

In theory, I suppose you could use actions on a $select to further modify the field where it stores its selection, but I really wouldn’t recommend it.

  • Any changes to the field defined by the $select field= attribute will remove the record of your last selection, and this will make it difficult to replace or remove a specific piece of the composite filter.
  • I think you’d also be likely to encounter the ever-growing filter problem we discussed yesterday.