Skip to main content

5 replies

Fadel
23-Emerald II
July 23, 2026

Not sure if  you  mean issue in https://www.ptc.com/en/support/article/CS23271 

Buiꓘa
RG-Alle12-AmethystAuthor
12-Amethyst
July 29, 2026

This is for Revision, I am able to customize that but not version. I’m unable to figure out which OOTB class is used for diaplaying version here. 

7-Bedrock
July 23, 2026

You can modify the view: Above your highlighted area, “Default”, select a different or create a new view.

RG-Alle12-AmethystAuthor
12-Amethyst
July 29, 2026

Thank you for the response, but I’m not looking to add or remove a column from the view. I want to control what is being displayed in the Version column, I need to add a business logic to the OOTB class that’s controlling the version.

HelesicPetr
22-Sapphire II
August 3, 2026

Hello ​@RG-Alle 

The collector table is hardcoded and standard dataUtilities are not used in this table. It is JSDataUtility

I identified just that the column version is internally called “iterations” and I could just identify a view that is used. 

com.ptc.windchill.enterprise.change2.tableViews.CollectResultingObjectsJSTableViews

It took time :D

I’ve found the DataUtility that is used but it is not standard.

com.ptc.core.htmlcomp.jstable.JSPersistableDataUtility

Data utility process all the attributes in the table so you have to catch the right column ID and process as you need. The version id is “iteration”

PetrH