Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GWT equivalent of Smart-GWT's Live Grid

Is there a GWT equivalent for SmartGWT's Live Grid with the Async loading of scrolled data?

like image 881
user1021138 Avatar asked Apr 30 '12 15:04

user1021138


2 Answers

Currently there's no sufficient equivalent for rich grids in GWT, let alone Ajax driven grid widgets.

One appropriate alternative would be GXT's live grid, but that's just going out of the frying pan into the fire, since you'd have to work with GXT instead of SmartGWT.

GWT was not meant to be used as a widget library, providing a vast selection of UI widgets, but merely supply a firm infrastructure for Java programmers to easily develop rich Ajax web applications. It can (and should) be extended with supplementary widget libraries to compensate for its lack thereof.

like image 134
Eliran Malka Avatar answered Sep 20 '22 01:09

Eliran Malka


You can use cell table, data Grid . hear is the showcase which has simple cell List example which is same as your requirement so you can apply same logic for cell table and you can create Live grid in GWT. hear is the link for cell List Cell list Example GWT

like image 36
Dipesh Gandhi Avatar answered Sep 20 '22 01:09

Dipesh Gandhi