Adding my own afterVK Validator for Change Task set attributes page
I would like to add my own validation logic to creating and editing a change task, specifically the set attributes page. I see in the JSP for create its using the default for "object":
<jca:wizardStep action="defineItemAttributesWizStep" type="object"/>
and that already has a afterVK validator:
<objecttype name="object" class="wt.fc.Persistable" >
<action resourceBundle="com.ptc.core.ui.componentRB" name="defineItemAttributesWizStep" id="defineItemAttributesWizStep" afterVK="setAttributesWizStep" preloadWizardPage="false" required="true" >
<component name="defineItemAttributesWizStep" typeBased="true" windowType="wizard_step"/>
</action>
</objecttype>
I do not want to upset and OOTB logic defined in the setAttributesWizStep and I only want this to be run for change task, not all objects. Is there an easy way to hook in this check?
Would I need to break from the default call out for "object" in the create.jsp and change the objectHandle to "task" and the copy the definition with my mod?

