version 12.1.3
in my taskflow I have pagA and PageB with a control flow case 'goToB' , which will take a user from pageA to pageB. when they select a row in ADF table and click on Edit btn. All this works fine.
Now I am implementing a responsive design for a smartphone. When the web-application is run from an iPhone, I present the ADF table as a ListView.
So, when in ListView, I want the user to be able to tap a row and navigate to pageB for edit. I could have the user tap a row then click edit btn to go to next page, but that kind of violates the mobile friendliness.
So, I have dropped clientListener and serverListener on the ListItem, so that when it is tapped it invokes a bean, which should then programmatically invoke control flow case 'goToB' and navigate the user to pageB.
Now the problem is that I don't see binding property in the control flow case 'goToB' to programmatically access it from the bean to execute it.
Any thoughts/ideas to solve this problem?
Thanks.