我当前正在尝试通过动态操作选择交互式网格中的特定行(而不是单击交互式网格中 APEX$ROW_SELECTOR 列中的框)。
设置交互式网格,以便可以一次选择多行,重要的是动态操作不会覆盖以前手动完成的行选择。
为此,您可以使用 setSelectedRecords 小部件功能。 举个例子:
// use your interactive grid region's static ID
var ig$ = apex.region("region_static_id").widget();
// use the id of the records you want to select in the array
ig$.interactiveGrid("setSelectedRecords", ["1", "2"]);