Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
The Object List table in Workspace of any product has no actions on right click of the objects. i need to add one.
I have done that for other tables by using "menufor" in the actionmodel and then calling this actionmodel as a column in the TableBuilder class. And it worked.
ColumnConfig testcolumn = factory.newColumnConfig(DescriptorConstants.ColumnIdentifiers.NM_ACTIONS, true); ((JcaColumnConfig)testcolumn).setDescriptorProperty(DescriptorConstants.ActionProperties.ACTION_MODEL,"testactionmodel"); table.addComponent(testcolumn);
But i am not able to find the TableBuilder for the Object List table. Anybody has had any experience here.
Setting jcaDebug=true, also doesnt reveal anything. Normally, it would have directly given me the TableBuilder name.