欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

extjs4.0  

程序员文章站 2022-05-24 09:34:24
...
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...
}