如何从Oracle Apex18.1中的动态操作调用集合

时间:2018-10-12 08:08:26

标签: oracle oracle-apex oracle-apex-5.1

当用户单击“刷新”按钮时,我需要刷新一个交互式报告,并且需要从一个集合中生成该报告。 我已经在预渲染区域的过程中创建了一个集合:

enter image description here

但是当我单击“刷新按钮”(按钮位于不同区域)时,它没有调用(我也在按钮中创建了一个动态动作,并在其中编写了收集代码)。

如果有人知道该怎么做..请告诉我。提前非常感谢!

1 个答案:

答案 0 :(得分:0)

更改要在ajax回调上执行的进程,然后按照以下要求发出ajax请求

apex.server.process(
'your process name',                             // Process or AJAX Callback name
{}, 
{
  success: function (pData) {             // Success Javascript
    apex.event.trigger( "#myRegionStaticID", "apexrefresh" );
  },
  dataType: "text"                        // Response type (here: plain text)
}

);