GoPartInfo question

I have implemented a treeview like structure using the CollapsingRecordNode example as a reference. The issue I have is I have overriden the GetPartInfo for the header of each GoListGroup which is a GoTextNode, but it never gets called. Only the overall tree container, which is a GoNode has its GetPartInfo called. How can I get the GoTextNode’s GetPartInfo to be triggered?

Thanks,
J

Override GoViewDataRenderer.AddPartInfo to recurse through CollapsingRecordNodes, calling GoObject.GetPartInfo on the child objects that you care about and then calling GoViewDataRenderer.AssociatePartInfo.

Remember to replace the standard data renderer by setting GoView.DataRenderer with an instance of your renderer subclass.

Thanks Walter. That solution works fine.