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.
任何人都知道使用 hashmap 在 smartgwt 中实现 ListGrid。我正在使用 smart gwt 3.0 并寻找带有 hashmap 的实现 ListGrid ...现在 ListGrid 使用表作为记录容器
我尝试实现我自己的 listgrid,但它对我来说太复杂了:/
“使用哈希图”是什么意思?你的意思是每条记录?
您可以轻松地将 HashMap 转换为 SmartGWT 记录,然后将其插入到列表网格中。
RecordList list = new RecordList(); ListGrid listGrid = new ListGrid(); listGrid.setData(list); Record record = new Record(hashMap); list.add(record);