parttio / grid-pagination

Adding pagination feature to a Vaadin 10 Grid component
Other
22 stars 16 forks source link

Override other Grid constructor #25

Open ppawlowski15 opened 1 year ago

ppawlowski15 commented 1 year ago

Hello, I just need to be able to use two parameters Grid constructor, which allow to set autoCreateColumns parameter:

public Grid(java.lang.Class<T> beanType, boolean autoCreateColumns)

Can u add it? It should more less looks like this:

public PaginatedGrid(Class<T> beanType, boolean autoCreateColumns) {
     super(beanType, autoCreateColumns);
     init();
}

Thanks ;)