基本的なカスタマイズ > ユーザーインタフェースのカスタマイズ > ウィザードの作成 > 再利用可能なウィザードステップのカスタマイズ > サンプルコード
  
サンプルコード
「属性を設定」ステップのデフォルトビュー JSP
この JSP は、<Windchill>/codebase/config/actions/actions.xml にある objecttype=object の "defineItemAttributesWizStep" 操作の MVC ビューです。任意のオブジェクトの「属性を設定」ステップの MVC ビルダーは、DefineItemAttributesWizStepBuilderです。ビルダーの MVC ビューは、WEB_INF/jsp/object/ defineItemAttributesWizStep.jsp で定義されます。
次のセクションのWTPart の「属性を設定」ステップのデフォルトビュー JSPでは、WTPart がカスタマイズしたタイプピッカーと ReadOnlyPropertyPanel を含む必要がある場合に、オブジェクトタイプ WTPart について独自のビュー JSP を作成する方法を示しています。
<%@ taglib uri="http://www.ptc.com/windchill/taglib/jcaMvc" prefix="mvc"%>
<%@ include file="/netmarkets/jsp/components/beginWizard.jspf"%>
<%@ include file="/netmarkets/jsp/components/createEditUIText.jspf"%>
<%@ include file="/netmarkets/jsp/components/includeWizBean.jspf"%Ok. W>
//The driver attribute panel that defines the top section that includes the read
only property panel for context, type picker and driver attributes
<div id='driverAttributesPane'>
<%@ include
file="/netmarkets/jsp/components/defineItemReadOnlyPropertyPanel.jspf"%>
<jca:configureTypePicker/>
<%@ include file="/netmarkets/jsp/components/defineItem.jspf"%>
</div>
//Include Attribute Panel defining the non driver attributes
<mvc:attributesTableWizComponent/>
<%@ include file="/netmarkets/jsp/util/end.jspf"%>