私は Smart gwt の初心者です。基本的に、データ構造は次のとおりです。
あ
|_____ B1
|__C1
|__C2
|__C3
|_ B2
したがって、次のように ListGridRecord を作成しました。
public class VEPAreaRecord extends ListGridRecord{
public VEPAreaRecord(){
}
/**
* @param vepAreaName
* @param checkStations
*/
public VEPAreaRecord(String vepAreaName, String[] checkStations) {
setVepAreaName(vepAreaName);
setCheckStations(checkStations);
}
/**
* @return the vepAreaName
*/
public final String getVepAreaName() {
return getAttribute("vepAreaName");
}
/**
* @param vepAreaName the vepAreaName to set
*/
public final void setVepAreaName(String vepAreaName) {
setAttribute("vepAreaName",vepAreaName);
}
/**
* @return the checkStations
*/
public final String[] getCheckStations() {
return getAttributeAsStringArray("checkStations");
}
/**
* @param checkStations the checkStations to set
*/
public final void setCheckStations(String[] checkStations) {
setAttribute("checkStations",checkStations);
}
}
しかし、私のListGridでは、データを次のように表示したい
エリア1 エリア2 エリア3
チェック1 チェック2 チェック3
チェック4
チェック5
したがって、基本的には、行を列として表示したり、その逆を行ったりする必要があります。しかし、これを達成する方法がわかりません。または、これを処理する他のコンポーネントはありますか?