helpful code snippet for ADF mObile Application developer
1- To programmatically invoke/call a Taskflow
A. Javascript : In JavaScript file, you can directly call this method to navigate. Below "Outcome" is control flow case name.adf.mf.api.amx.doNavigation("outcome");
B. Java:
AdfmfContainerUtilities.invokeContainerJavaScriptFunction(AdfmfJavaUtilities.getFeatureName(), "adf.mf.api.amx.doNavigation", new Object[] { "outcome" });
more details:
http://deepakcs.blogspot.sg/2013/04/sync-device-back-button-with-adf-mobile.html
https://community.oracle.com/thread/2496197
Comments