This column style Info contains the following information:
•Is the item linked to a page? If so, displays the icon
•Is the item published on web? If so, displays the icon
•Is the item assigned to a page? If so, display the icon
<ColStyle Name="Info" Width="60" Height="0">
<CellTemplate>
<StackPanel VerticalAlignment="Top" Orientation="Horizontal" HorizontalAlignment="Left">
<l:InfoPopup InfoId="{Binding Path=[folderObject.id]}" VerticalAlignment="Top" DirectoryStyleName="Link"
Visibility="{Binding Path=[linkObject.pageLayers], Converter={StaticResource NullValueConverter}, ConverterParameter=Collapsed:Visible}">
<l:ConfigIcon IconName="tlb_link" Size="16" />
</l:InfoPopup>
<l:InfoPopup InfoId="{Binding Path=[folderObject.id]}" VerticalAlignment="Top" DirectoryStyleName="Publish"
Visibility="{Binding Path=[folderObject:Referencing( pubDest.objs )], Converter={StaticResource NullValueConverter}, ConverterParameter=Collapsed:Visible}">
<l:ConfigIcon IconName="tlb_web" Size="16" />
</l:InfoPopup>
<l:InfoPopup InfoId="{Binding Path=[folderObject.id]}" VerticalAlignment="Top" DirectoryStyleName="Assigns"
Visibility="{Binding Path=[linkObject.assigns], Converter={StaticResource NullValueConverter}, ConverterParameter=Collapsed:Visible}">
<l:ConfigIcon IconName="tlb_assignment" Size="16" />
</l:InfoPopup>
</StackPanel>
</CellTemplate>
</ColStyle>