Hi,
The problem is
DocumenPublishTo property is not returned in DataSet for the standard document types. With standard Repeaters, you can only display columns which the document type you are using contains in its definition (
Site Manager -> Development -> Document types -> <your document type> -> Fields).
However, there is a way to achieve the same effect with a slightly different approach using
Repeater with custom query. At first, you need to define a query which will return DataSet containing DocumentPublishTo column. Usually there are SQL views defined for that. So your query could look like this (example for built-in
News doc type):
SELECT ##TOPN## ##COLUMNS## FROM View_CONTENT_News_Joined WHERE (##WHERE##) ORDER BY ##ORDERBY##
Then you just need to use this query in Custom query Repeater's configuration and Publish to property should then be rendered correctly.
Best regards,
Filip Ligac