Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi.
I want to create naviagator tab model for my individual object.
I created MyObject.class and some UI components as described in "Getting Started With Windchill Customization" chapter.
I created first and second level actions for Navigator Browse Tab as described here (actions refer to MyObject class).
I created MyObject instance (through previously created ui components) and expected to see structure (in Browse) same as for Products (list of products with second level list of actions for each product).
But all i see is only list of second level actions. I have no MyObject instance at GOLF_CART place.
Is it possible to do?
Thanks.
Yes Vasiliy , It is possible to do that, You just have to define the tab structure in Custom-Action.xml properly.
<command class="netmarkets" method="servlet/Navigation?tab='tab_id" windowType="page"/>
Define sub tabs as above, method name should be trailed by 'tab='tab_id' for each sub tab action.
<model name="tab-id navigation" >
<description>Sub tabs under main tab</description>
<!-- <action name="" type=" "/> -->
<action name="" type=" "/>
<action name="" type=" "/>
<action name=" " type=" "/>
</model>
You can simple using tag<lable>dispaly label</label> .
<model name="tab-id navigation" >
<lable>dispaly label</label>
<description>Sub tabs under main tab</description>
<!-- <action name="" type=" "/> -->
<action name="" type=" "/>
<action name="" type=" "/>
<action name=" " type=" "/>
</model>
In that case, I have no list of recently visited objects. I can see only one list of actions regardless of MyObject instances.