cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

We are happy to announce the new Windchill Customization board! Learn more.

PDMLink 10.1 QuickLinks

JIMVANDRAGT
1-Newbie

PDMLink 10.1 QuickLinks

Good Day All,

I was wondering if any of you have been able to add any additional links to the Quick Links pulldown menu in PDMLink 10.1? It seems like a nice area to add a few hyperlinks to.

Thanks

[cid:image001.png@01CDC1B3.C91F7080]

Jim

Jim Van Dragt
PLM Architect
Information Technology
hermanmiller.com
4 REPLIES 4

Jim - You will have to copy the following section from Navigation-actionModels.xml to your custom-actionModels.xml and add your custom Action. You will also have to define the UI components for that action in custom-actions.xml


<model name="header" actions&quot;=">
<description>
actions that appear in the top right of the header
</description>
<submodel name="help"/">
<action name="clipboard" type="netmarkets"/">
<action name="queueMonitorMain" type="wvs"/">
<submodel name="mysettings"/">
<action name="checkConsole" type="object"/">
<action name="batchPrintGlobal" type="wvs"/">
<action name="hotList" type="user"/">
<action name="softwareDownloads" type="netmarkets"/">
<action name="emailPage" type="team"/">
<action name="copyPage" type="object"/">
<submodel name="open"/">
<action name="separator" type="separator"/">
<action name="signOut" type="fba"/">
<action name="CUSTOM_ACTION" type="object"/">
</model>

Raju Pulavarthi
Sr. Systems Analyst - Windchill Team
Global Information Technology

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?

ArunPLM
7-Bedrock
(To:ArunPLM)

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:

https://support.ptc.com/help/wnc/r12.0.0.0/en/#page/Windchill_Help_Center%2FWCCG_UICust_AddActionsHook_Intro.html%23

 

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

 

Top Tags