当TreePick由DataSource填充时,如何使最后一个项成为叶子?

时间:2015-11-30 10:43:22

标签: smartgwt

我正在使用SmartGWT 2.5。

我想使用相同的示例显示here

正如您在Department菜单中看到的,我们可以'setCanSelectParentItems(false) For Category menu, if we setCanSelectParentItems(false), it allows us to select only the null item with label [Empty Menu]`。

当TreePick由DataSource填充时,我想将最后一个项目作为叶子吗?然后使用mCategory.setCanSelectParentItems(false);

禁用父选择

你能告诉我怎么做吗?

1 个答案:

答案 0 :(得分:0)

    categoryItem.setDataSource(dataSource);  
    categoryItem.setEmptyMenuMessage("No Sub Categories");  
    categoryItem.setCanSelectParentItems(true);          
    categoryItem.setLoadDataOnDemand(false);
    dataSource.fetchData();  

//将按需加载设置为false