I have a custom table and i am using a repeater to display the records. i have created a transformation with the name of 'displayOrganisationInfo'. The table contains four records. The following is the repeater i have used to display the content,
<cms:CMSRepeater ID="rptOrganisationInfo" runat="server" Path="." TransformationName="ct.OrganisationsAndVenues.displayOrganisationInfo" ZeroRowsText="No files are found"> </cms:CMSRepeater>
This is not working properly. It display only one record and the dynamic values are not populated. If i try to specify a where condition it says the columns are invalid. Is there any properties i have missed in the repeater?
Assuming you are using ASPX template mode, you should be using <cms:queryrepeater> control vs. the <cms:CMSRepeater> control. Check out the \CMSWebparts\CustomTables\CustomTableRepeater.aspx for more info on how to set the properties.
<cms:queryrepeater>
<cms:CMSRepeater>
Thank you very much Brenden Kehren, as another solution i did with <cms:CMSRepeater> using binding method. i created and a dataset and by binding that in server side i made it to work as i expected.
Please, sign in to be able to submit a new answer.