Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Hi,
I am trying to do this customization. I got the below document from PTC: https://www.ptc.com/en/support/article/CS260239
The UI is showing 'Free Chocolate'. But there is no action when I click it. Can you guide me?
Ok, figured out what should be the code inside thte jsp to launch a web url. (Rather than in the sample they showed how to do for new mail). Please put the below code in the jsp to launch 'webutl'.
<html>
<head>
<title>JSP Redirect</title>
</head>
<body>
<%
String site = "weburl.html" ;
response.setStatus(response.SC_MOVED_TEMPORARILY);
response.setHeader("Location", site);
response.sendRedirect(site);
%>
</body>
</html>
(I just noticed this thread was revived from 2012...anyway, responding to the more recent post(s) on this thread)
As others have already pointed to, for the QuickLinks menu, you would add to this file:
<WT_HOME>/codebase/config/actions/navigation-actionModels.xml
ex.
https://www.ptc.com/en/support/article/CS165964
You might want to look through the online help center, for "Adding actions and Hooking Them Up in the UI" topic, and the info under there.
ex.
Windchill 12 help:
There is the same help topic section for other versions of Windchill as well, including 10.x.
We also have a team of engineers, should you open a Support case, that specialize in the "customization" aspect of Windchill, when questions come up.
Mike