I want to save the grid header and col data in HashMap.
Map<String,List<String>> gridData = new HashMap<String,List<String>>(); // key ->header , value -> list of col
ColumnModel<RiaBean> columnModel = grid.getColumnModel();
for (int colonne = 0; colonne < columnModel.getColumnCount(); colonne++) {
String header= columnModel.getColumnHeader(colonne).toString();
/* missing code
**i have header name how to get the list of values of that header**
*/
gridData.put(header,list<>)
i missing code part i want get list of all values of same header
Please help.