Question

pega.api.ui.actions.refreshSection not refreshing the section in another harness
Hi,
I had written the below script which is called on the change action of the dropdown control. My dropdown control is in another harness than the section which I am refreshing. But the section in which dropdown control is referrred if I pass that section this works well. However, Below is not working for the section in another harness. Can someone please assist on this? Or suggest any other way.
function refreshSection(sectionName) { var e=window.event; var options = { section: sectionName, event: e }; pega.api.ui.actions.refreshSection(options); }