将表单委派注册到步骤 (步骤 6)
要更新步骤的表单委派:
1. 根据 ChangeManagement-actions.xml 创建自定义操作文件,并将此文件注册到 wt.properties 中特性 "com.ptc.netmarkets.util.misc.defaultActions" 的末尾。
2. 复制更改 objecttype 以及仅要进行覆盖的所需操作来自定义 actions.xml本演示中的示例使用了 "changeTask" 和操作 "affectedAndResultingItemsStep"。
3. 更新命令类,使其指向在创建表单委派 (步骤 5) 中创建的新表单委派。
4. 如有必要,可更新其他属性 (如步骤 JSP)。
<?xml version="1.0"?>
<!DOCTYPE listofactionsSYSTEM '../../actions.dtd'>
<listofactions>
<objecttypename="changeTask" class="wt.change2.WTChangeActivity2"
resourceBundle="com.ptc.windchill.enterprise.change2.changeManagementActionsRB">
<action name="affectedAndResultingItemsStep"
id="affectedAndResultingItems" preloadWizardPage="false" required="false">
<description>Affected and resulting objects wizard step</description>
<command class="com.ptc.windchill.enterprise.custom.delegates.
CustomAffectedAndResultingItemsFormDelegate

windowType="wizard_step"/>
</action>
</objecttype>
</listofactions>
这对您有帮助吗?