Hi All,
Application Express 4.2.5.00.08
Oracle 10g and 11g
On my applicaiton, I have a page zero and it has a region that is calling on the other page.
e.g. Search (Region) it has a radio button item and user can choose one of them. This region has a button called
Submit. So when user click the Submit button then it calls a javascript funciton such as javascript:get_scoact();return false;
It calls:
<script type="text/javascript">
function get_scoact(){
var socact = document.getElementById('P0_USER_SEARCH').value;
var get = new htmldb_Get(null,html_GetElement('pFlowId').value, 'APPLICATION_PROCESS=GET_SOCACTNUM',$v('pFlowStepId'));
get.add('P0_USER_SEARCH',socact);
var gReturn = get.get();
document.getElementById('P0_SEARCH_ITEM').value = gReturn;
}
</script>
All above are working perfectly and also Application process "GET_SOCACTNUM" also work! However, I am only facing problem
when I use this search region on any page such as (page 10,20,30 or so on ) so it does not refresh the page even though
I have done some other tricks such as submit page and other DAs but I have to do refresh manually by pressing F5.
Any help please?
Regards, RI