Abstract Java Grid

I am looking for an abstract representation of a grid in Java (a grid like in this thing with columns and rows of data). Are there such things? I want to be able to sort, filter, track rows, set column properties, etc. Then I will implement the grid on the Internet.

To be clear: I have already decided to use the end-viewing technology (client side). The thing I'm looking for will contain all the entries and offer them as needed.

+3
source share
3 answers

Take a look at this Sun tutorial on tables in java. This gives a good idea of ​​how to implement the model.

Table Tutorial in Java

+1
source

JTable is what you are looking for.

0

You can reuse the table models of the Glazed Lists project (provided that you can connect the web view to a regular TableModel)

0
source

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


All Articles