こんにちは私は使用しようとしていますSmartGWT
。
私はArraylistを持っています
ArrayList<FileDocument> documentsArrayList = new ArrayList<FileDocument>();
// すべての値は documentsArrayList にあります
そしてテーブル
private ListGrid getDocumentTable() {
if (documentTable == null) {
documentTable = new ListGrid();
documentTable.setSize("644px", "379px");
documentTable.setCanResizeFields(true);
documentTable.setFields(getStatus(),getIcon(),getName(),getSize(),getModifiedby(),getModifiedDate());
}
return documentTable;
}
グリッドのフィールドは
public ListGridField getName() {
if (name == null) {
name = new ListGridField("name","Name");
}
return name;
}
配列リストの値をテーブルに値を入れたい。
documentTable.setData(一部のリスト グリッド レコード);
データを設定できるように変換する方法ArrayList
。ListGridRecord