Re: How to change a Grid's parameter from a subclass of Grid?

2020-04-29 Thread Aleksandar Nikolov
Hello, It works this way. First I had to extend Grid with some of my functionality, because it needs access to the Grid's data - ExGrid, and then embed that ExGrid with Select into another component - ExExGrid. But there has one parasite component this way - ExGrid. However, this is a solut

Re: How to change a Grid's parameter from a subclass of Grid?

2020-04-27 Thread Thiago H. de Paula Figueiredo
On Mon, Apr 27, 2020 at 1:24 AM Aleksandar Nikolov wrote: > Hi, > Hello! What if ExGrid uses Grid (and adds the Select you want) instead of extending it? > I extended Grid component because, among the other things, I want to > integrate a Select component for choosing 'rowsPerPage' parameter

How to change a Grid's parameter from a subclass of Grid?

2020-04-26 Thread Aleksandar Nikolov
Hi, I extended Grid component because, among the other things, I want to integrate a Select component for choosing 'rowsPerPage' parameter of the Grid - for example by "10 20 50 100" rows per page values. Let's call ExGrid extends Grid. It is 5.3.8 Tapestry version. So far so good, but how c