I am creating mobile application using Oracle MAF framework. I have a feature that uses a local HTML "untiled.html".
The HTML content of untitled.html
is
<html>
<head><title>index</title></head>
<body>
<div id="output"></div>
<script>
if(typeof adf !="undefined" && adf.mf.api.invokeMethod)
documnet.getElementById('output').innerText="ADF API IS DEFINED";
else documnet.getElementById('output').innerText="ADF API IS NOT DEFINED";
</script>
</body>
</html>
The output returned is ADF API IS NOT DEFINED why am i not able to reference the adf JS API from my Script Tag.
I am following this MAF page for API reference
https://docs.oracle.com/middleware/maf222/mobile/js-ref/adf.mf.api.html
I want to use the invokeMethod
method of adf.mf.api
to invoke a java method from the javascript accrording to the reference above it should be possible.