Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ハッシュマップを使用する smartgwt での ListGrid の実装については誰でも知っています。私は smart gwt 3.0 を使用しており、ハッシュマップを使用した ListGrid の実装を探しています。現在、ListGrid はテーブルをレコードのコンテナーとして使用しています。
私は自分のリストグリッドを実装しようとしましたが、私には複雑すぎます:/
「ハッシュマップを使用する」とはどういう意味ですか? レコードごとということですか?
HashMap を SmartGWT Record に簡単に変換し、リストグリッドに挿入できます。
RecordList list = new RecordList(); ListGrid listGrid = new ListGrid(); listGrid.setData(list); Record record = new Record(hashMap); list.add(record);