Add page filter to ParameterDAT

Hey! I think it would be useful to be able to filter parameters by page when using the ParameterDAT operator :slight_smile:

Here’s a tricky little expression to put in Parameters that will get you there for now:

[p.name for p in op('..').pars() if p.page and p.page.name == 'Children']

or

[p.name for p in op('..').pars() if p.page and p.page.name in ['Look', 'Panel']]
2 Likes