如何从列表中获取所有选中的项目?
我需要从列表中获取所有选定(选中)的项目并填充一个向量。
我没有得到所有选定的项目,我只得到当前关注的项目。
根据知识库文章,我正在使用复选框实现列表字段。
如果我使用 getSelection(),它会返回当前突出显示的列表行索引,而不是所有已检查的索引。
如何从列表中获取所有选中的项目?
我需要从列表中获取所有选定(选中)的项目并填充一个向量。
我没有得到所有选定的项目,我只得到当前关注的项目。
根据知识库文章,我正在使用复选框实现列表字段。
如果我使用 getSelection(),它会返回当前突出显示的列表行索引,而不是所有已检查的索引。
正如我所不明白的那样,示例是如何 - 创建带有复选框的 ListField
然后可以将 Vector 添加到实现 ListFieldCallback 的类中:
private Vector _checkedData = new Vector();
public Vector getCheckedItems() {
return _checkedData;
}
并以这种方式更新 drawListRow:
if (currentRow.isChecked())
{
if( -1 ==_checkedData.indexOf(currentRow))
_checkedData.addElement(currentRow);
rowString.append(Characters.BALLOT_BOX_WITH_CHECK);
}
else
{
if( -1 !=_checkedData.indexOf(currentRow))
_checkedData.removeElement(currentRow);
rowString.append(Characters.BALLOT_BOX);
}
如果您将 VerticalFieldManager 与自定义 CheckBoxField 一起使用,您可以遍历屏幕上的所有字段(或任何管理器)并检查其复选框字段是否,然后取一个值:
class List extends VerticalFieldManager {
...
public Vector getCheckedItems() {
Vector result = new Vector();
for (int i = 0, cnt = getFieldCount(); i < cnt; i++) {
Field field = getField(i);
if (field instanceof CheckboxField) {
CheckboxField checkboxField = (CheckboxField) field;
if (checkboxField.isChecked())
result.addElement(checkboxField);
}
}
return result;
}
}
@sandhya-m
class List extends VerticalFieldManager {
...
public void selectAll() {
for (int i = 0, cnt = getFieldCount(); i < cnt; i++) {
Field field = getField(i);
if (field instanceof CheckboxField) {
CheckboxField checkboxField = (CheckboxField) field;
checkboxField.setChecked(true);
}
}
}
}