How to run Data Transform from HTML rule before reloading the section
Hi All,
I have a section with HTML as below
<Script>
function ABCRefresh() {
var section = pega.u.d.getSectionByName('ABC', '');
var theHandle = window.setInterval(function(){pega.u.d.reloadSection(section, '', '', false, false, '-1', false);},2000);
}
pega.u.d.attachOnload(ABCRefresh, false);
</Script>
This is working fine, but i want to run an Data Transform before this refresh.
This Data Transform sets some Parameters such as Param.A=20;
Basically my aim is to send run Data Transform as a "PreActivity" to reload section.
Thanks in advance,