I have the following code displaying a list of files at the path "/Files/%". I have a custom transformation 'CMS.File.FileInfo', in which I want to display things like filetype icon, file size, modified date etc. I can create a link to it easily with <%# GetDocumentLink() %>, but anything more is beyond me.
<cms:CMSDocumentsDataSource EnableViewState="false" Path="/Files/%" ID="documentsDataSource"
ClassNames="CMS.File" runat="server" />
<cms:CMSDataList ID="ucDatalist" runat="server"
TransformationName="CMS.File.FileInfo"
ZeroRowsText="No data found" EnableViewState="false" />
As this seems to be quite difficult, am I going about this the wrong way? Is there some combination of controls etc that could do this for me?