Sowjanya2
(Sowjanya netha)
1
Hi,
I am trying to use filter table add-on but it is not working. The widget compile was sucess but its showing the widget not loaded.
Please find the attached screenshot.
Also i checked is there any addon with search and Pagination i didnt find any addon.
Please suggest me any addon to work on it.

Kim
(Kim Leppänen)
2
You are still using the default, precompiled widgetset. You can define it through the servlet configuration. It could look somewhat like this
@WebServlet(value = "/*", asyncSupported = true)
@VaadinServletConfiguration(productionMode = false, ui = PlaygroundUI.class, widgetset = "com.example.playground.widgetset.PlaygroundWidgetset")
public static class Servlet extends VaadinServlet {
}