我试图设置选定的记录在顶点互动网格以下的文档API文档,但它不工作。
我有一个记录数组,当我尝试使用
apex.region("grid").widget().interactiveGrid("setSelectedRecords", records);
字符串
或者是
grid.setSelectedRecords(records);
型
当我通过控制台检查它时,输出如下所示,但未选择行(选择为空,因为我将传递空数组。
console output image
我用的是APEX 19.2,有人遇到过类似的问题吗?有什么建议吗?
2条答案
按热度按时间dy1byipe1#
试试这个:
第一个月
也许必须是'[]'之间的记录示例:
Copyright © 2018 - 2019 www.grid.com All Rights Reserved.粤ICP备15044552号-1
apex.region(“gridId”).widget().interactiveGrid(“getViews”,“grid”).setSelectedRecords([record],true);
oxiaedzo2#
这在我的案例中起作用:
字符串