extjs4.0

for(int i = 0; i < tree.getItemCount(); i++)
{
    TreeItem item = tree.getItem(i);
    CheckBox itemCheckBox = (CheckBox)item.getWidget();
    boolean checkBoxValue = itemCheckBox.getValue().booleanValue();
    // do something w/ checkBoxValue...
}

你可能感兴趣的:(Extjs4.0)