Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
4 replies
Subscribers
6 subscribers
Views
1926 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Process
Hello, There is one quick link on our process instance dashboard.This
achaugule
over 11 years ago
Hello,
There is one quick link on our process instance dashboard.This quick link launches another subprocess, can we navigate user to dashboard of this subprocess after he complete quick link task form?
Can we make use of linktoprocessdashboardinternal() function?...
OriginalPostID-107395
OriginalPostID-107395
Discussion posts and replies are publicly visible
0
pradeepd780
over 11 years ago
I guess this function will not solve your purpose, this link refreshes the dashboard content instead of navigation.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Stefan Helzle
A Score Level 3
over 11 years ago
There is a javascript hack for this. We have this running on 7.0. Beware that this might break anytime. If you are still interested I can share the code.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
achaugule
over 11 years ago
It will be really helpful if you share that code.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Stefan Helzle
A Score Level 3
over 11 years ago
OK. I have a form which has a message field. This can be hidden using javascript. This field contains exactly one html link (href). To create the link I use the function linktoprocessdashboardinternal().
The following JS function takes this link an sets the src attribute of a hidden frame. This frame is part of the Appian forms magic.
function forward_to_url(fieldID) {
// Extracts the url from a message field
// which has to contain ONE html link from which the url is extracted
setTimeout(function() {
$("#fProcess").attr("src", $("#fd_component_" + window.FormDesigner.runtimeNamespace + fieldID + " a").attr("href"))
}, 250);
}
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel