0
HashMap에 모눈 머리글과 col 데이터를 저장하려고합니다. 내가 코드를 일부 누락GXT 모눈 값을 Map에 저장하는 방법
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<>)
내가
도와주세요 같은 헤더의 모든 값의 목록을합니다.
GXT 2 또는 3으로 작업하고 계십니까? –