12-Amethyst
December 10, 2024
Solved
Windchill Library Main Screen
- December 10, 2024
- 1 reply
- 1247 views
If you are familiar with adding custom actions in the custom-actionsModels.xml, that is where I would start. You'll need to copy and add to the "folderbrowser_toolbar_actions" section. I have a snipet below:
<model name="folderbrowser_toolbar_actions">
<description>Folder browser toolbar actions menu for all Folders.</description>
<submodel name="folderbrowser_toolbar_open_submenu" />
<action name="customLaunchMatrixEditorWizard" type="productfamily"/>
<action name="separator" type="separator" />
<submodel name="folderbrowser_toolbar_new_submenu" />
<action name="separator" type="separator" />
<action name="list_cut" type="object" /> <!-- Cut -->
<action name="list_copy" type="object" shortcut="true" /> <!-- Copy -->
and I added some custom ones to that list:
<action name="list_deleteRepOnly" type="customization" shortcut="true" resourceBundle="com.ptc.wvs.util.ActionDefinitionsRB" /> <!-- RepDelete -->
<action name="list_createRep" type="customization" shortcut="true" resourceBundle="com.ptc.wvs.util.ActionDefinitionsRB" />
<action name="list_createRepEPM_WC" type="customization" shortcut="true" resourceBundle="com.ptc.wvs.util.ActionDefinitionsRB" />
Now, these show up in my actions list but also I see them in my toolbar. The thing I do not know about is why some do and some don't. Someone else can respond to that.

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.