我有一个表,其数据源设置为 IndexedContainer。我的表上也启用了多项选择。问题是,我如何获得所有选定的值......也许是一个数组?
我的索引容器:
private void populateAnalyteTable () {
Analyte[] analytes = Analyte.getAnalytes();
for (Analyte analyte : analytes) {
Object id = ic_analytes.addItem();
ic_analytes.getContainerProperty(id, "ID").setValue(analyte.getId());
ic_analytes.getContainerProperty(id, "Analyte Name").setValue(analyte.getAnalyteName());
}
// Bind indexed container to table
tbl_analytes.setContainerDataSource(ic_analytes);
}
我最终想要得到的是一组 Analyte 对象