Basic Customization > User Interface Customization > Constructing Wizards > Customizing Reusable Wizard Steps > Reusable Wizard Steps > defineItemAttributesWizStep > Customizations > How to modify the contents of the read-only property panel in the step
  
How to modify the contents of the read-only property panel in the step
1. Create a new main jsp file for the step.
2. Copy the contents of the file <Windchill>/netmarkets/jsp/object/defineItemWizStep.jsp into the new main jsp file.
3. Delete the following line and replace it with your custom describePropertyPanel tag that includes the attributes you want to display:
<%@ include file="/netmarkets/jsp/components/
defineItemReadOnlyPropertyPanel.jspf"%>
Be sure to set the following attributes on your describePropertyPanel tag:
Attribute
Value
var
“defineItemStepContextPanelDescriptor”
id
“defineItemStepContextPanelDescriptor”
scope
“request”
mode
“VIEW”
Alternatively, you could include a new jspf file that contains your describePropertyPanel tag instead of placing it in-line.
See JSP for the Defining the Define Item Panel for WTPart for an example.