Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Form initialize using apex.server.process

FaadiOct 24 2021

The purpose of below to load the form with the data without page submit but the below approach didn't work.
Form - initialization begin put on AJAX CALLBACK point as follow
image.pngThen i called it from JavaScript DA on button.
image.pngFollowing apex cod used.
But it is not initializing the data on form when button pressed.

apex.server.process('APEX',{pageItems : '#P1_EMPLOYEID'},
    {
        dataType : 'text', success : function(data)
        { 
          if(data != 'SUCCESS') apex.message.alert(data);
        }
    }
)

Comments

Post Details

Added on Oct 24 2021
8 comments
2,469 views