Reputation: 320
I am developing a simple application using ADF comes with basic CRUD operations (create, read, update, delete). In this case, as you can see, I have dragged a link to the 1st column which is highlighted in yellow.
So whenever I deploy it and click that, it is supposed to redirect me to the Edit
page where client will allow to make commit:
I did make sure the Action
of link is associated with the Edit
page (as highlighted in yellow above). However, the link
wouldn't redirect me anywhere, no response.This is the unbounded task flow:
Upvotes: 0
Views: 877
Reputation: 320
Okay so I have found out the solution. Due to the default setting, the application will be deployed on IE and this message will prompt out. As you can see, the message is mentioning about browser's compatibility. My IE is version 11.6, I'm not sure what's the issue here since my IE is kinda latest version but this message still pops out and affects the redirect link from working. However, simply copy the application URL to Google Chrome and run should fix this issue. Hope this helps in future.
Upvotes: 1
Reputation: 315
If the two pages in the Unbounded Task Flow, then Add WildCard Control Flow Rule and connect the two pages with the WildCard.
Or you can use the Popup instead of opening a new page for edit
Upvotes: 0