GWT equivalent of Smart-GWT live network

Is there a GWT equivalent for SmartGWT Live Grid when loading scrolled Async data?

+6
source share
2 answers

There is currently no sufficient equivalent for rich grids in GWT, not to mention widgets controlled by Ajax.

One suitable alternative would be the GXT live grid , but this is just going out of the pan into the fire, since you have to work with GXT instead of SmartGWT.

GWT was not intended to be used as a widget library, providing a wide selection of user interface widgets, but simply providing a solid infrastructure for Java programmers to easily create rich Ajax web applications. It can (and should) be supplemented with additional widget libraries to compensate for its absence.

+6
source

You can use a table of cells, a data table. hear is a showcase that has a simple example of a list of cells that is similar to your requirement, so you can apply the same logic to the cell table and you can create a Live grid in GWT. listen is link for a list of cells List of cells. GWT example

+1
source

Source: https://habr.com/ru/post/914552/


All Articles