Custom component & filters

Hi,

I am using several custom components (displaying other pages) within a master page and I need to filter the datagrids in all these components from a drop down in the master page.

I can easily perform the initial filter using the attribute value of the custom component and manage the "load" event of the pages, but whenever the dropdown is updated, the data will not be refreshed, as the component is not reloaded. What would be the best approach to have all datagrids from all custom components refreshed automatically by the dropdown change event?

tks

1 Like

Setting of attribute will invoke property setter where you can reload your custom component. For example Title property in this article is a property and you can set it using Attributes:

tks, this works like a charm!