I have made components similar to the GridPager and Grid component. But now I have the following problem.
How can I update the _rowsPerPage property in the Pager component? Because initial it is passed through with a Parameter. @Component(parameters="rowsPerPage=rowsPerPage"...) private Pager _pager; But how can I change the rowsPerPage in the Pager component after it has been rendered? Because I have a select that allows the user to select the rows per page. And then I want to pass this to the rowsPerPage property in the Pager component. Can anyone tell me, how to do this?
