Fishborne 发表于 2020-7-31 10:02:40

如何去掉selector的勾选


flexGrid 的 selector, 如何去掉勾选
目前重置数据并refresh 仍然不能去掉, 要如何才能去掉呢?
theGrid.itemsSource = new wjCore.collections.CollectionView(datalist);
theGrid.collectionView.refresh();

KevinChen 发表于 2020-7-31 10:02:41

你好,Selector暂时不支持刷新或取消选中的功能,建议您采用原方案,通过自定义DOM实现选中。

KevinChen 发表于 2020-7-31 13:54:32

您好,您具体指的是哪个问题?是这个吗?

https://demo.grapecity.com.cn/wijmo/demos/Grid/Selection/CheckboxSelection/purejs
如果是这个,实际上这里的selector是自定义的dom实现的,需要把
updateSelectAllBox方法中的indeterminate属性设置为false才能取消选中状态。

Fishborne 发表于 2020-7-31 14:29:07

我用的是新特性, wijmo.grid.selector.Selector
有什么方法可以去掉勾选

Fishborne 发表于 2020-7-31 14:31:12

var theSelector = new xcSelector(theGrid, {});

Fishborne 发表于 2020-7-31 14:36:40

var theSelector= new wijmo.grid.selector.Selector(theGrid, {});
打印这个theSelector 没有找到类似的属性和方法
这个selector 有什么方法可以刷新或者设置选中和取消选中吗?
页: [1]
查看完整版本: 如何去掉selector的勾选