I know I can retrieve all inputs as a list of reactives with reactiveValuesToList but how would I go about getting only those with a given suffix (e.g. *-filter)?
I would need it to feed observeEvent, as I need to handle only the case where these inputs change. In my current situation, I cannot simply write the name of the inputs I am interested into, as they are created dynamically and their name can change according to some data (their suffixes stay the same).
Any idea?