Thank you for this component, Artur. I've just integrated the example for

Thank you for this component, Artur.

I’ve just integrated the example for Fetching users using a repository directly. I do note that under Vaadin 14.0.15 and Spring Boot 2.2.0.RELEASE, I had to change the getDefaultSortOrders() method to:

@Override
protected List<QuerySortOrder> getDefaultSortOrders()
{
	return QuerySortOrder.asc("username").build();
}