Skip to Main Content

How to Refresh/Reload tabular form after changing input item?

GeekintoJan 27 2015 — edited Jan 28 2015

Hi,

My apex version is: Application Express 4.2.5.00.08

My problem is: I can't Reload/Refresh tabular form (ID="f_details") after changed page item (NAME="P14_SEARCH") value?

My steps is:

1- Edit sql source to join :P14_SEARCH page item into code ...

select

"ID",

"ID" ID_DISPLAY,

"PROJECT_ID",

"CREDIT",

"DEBIT",

"SECTION_ID",

"ACC_ID"

from "#OWNER#"."T_PROJECTS_DETAILS"

where "CREDIT" = nvl(:P14_SEARCH,"CREDIT")

x3.PNG

2- I created dynamic action on P14_SEARCH page item ....

    Event= change , Action=Execute JavaScript Code , Fire On Page Load= No , Selection Type= Region , Affected Elements=Tabular_proj_details

My JS code is:

$('#f_details').trigger('apexrefresh');

3- Change Enable Partial Page Refresh to "YES".

Now i can't  filter tabular form data depend on P14_SEARCH value, Because tabular form not refresh/reload new data ..! 

That's my problem.

Sorry for language mistake's.

Help me please,

This post has been answered by Jorge Rimblas on Jan 27 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked due to inactivity on Feb 25 2015
Added on Jan 27 2015
3 comments
1,350 views