HTP.P('')
Hi,why not just create a HTML region to call Javascript? For example with the following code<script type="text/javascript">your_javascript_function();</script>Patrick
Yes, that would work, but how do you call PL/SQL from an HTML area? I could not figure that one out.
You have to do that with AJAX calling an on-demand process of APEX. See Carl Backstrom's example application.If this PL/SQL procedure doesn't need session variables from APEX you can also directly call it. See the download image example here.Patrick
So that's how you do it from HTML...well, I will add that to the ol' bag of tricks. Thanks!
Post a Comment
4 comments:
Hi,
why not just create a HTML region to call Javascript? For example with the following code
<script type="text/javascript">
your_javascript_function();
</script>
Patrick
Yes, that would work, but how do you call PL/SQL from an HTML area? I could not figure that one out.
You have to do that with AJAX calling an on-demand process of APEX. See Carl Backstrom's example application.
If this PL/SQL procedure doesn't need session variables from APEX you can also directly call it. See the download image example here.
Patrick
So that's how you do it from HTML...well, I will add that to the ol' bag of tricks. Thanks!
Post a Comment