The method IContentManager.BuildDisplay used to call to the drivers of a ContentItem has an optional groupId argument. I have navigated through the source code but I did not understand exactly what is its use case. It seems to be able to filter shapes, but I'm not sure I understand how.

Could you clarify this for me? Thanks in advance.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Yes, this parameter is used for filtering shapes. You can provide an optional parameter via .OnGroup() method of ContentShape object returned from Display/Editor method of a driver.

By default it's an empty string. If you provide a groupId parameter in BuildDisplay - only the shapes with that group id specified would be taken into account when building the final output.

I found it particularly useful when needed to render the same part differently in different scenarios - returning a Combined result with ContentShape objects (each with different group specified) in it from the driver's Display method.

Remember that if you explicitly specify a group in BuildDisplay method - only the shapes with that group set will be used.

link|improve this answer
True. This group is currently used to handle the tabs in admin pages if I'm not mistaken. – Bertrand Le Roy Jul 26 '11 at 0:54
Thanks a lot. This will prove pretty useful. – Falanwe Jul 26 '11 at 6:09
@Bertrand: Your're right - it's currently used to handle site settings menu sub-items in Dashboard. – Piotr Szmyd Jul 26 '11 at 12:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.