Display custom table data

prathap myl asked on May 27, 2014 07:47

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?

Recent Answers


Brenden Kehren answered on May 27, 2014 13:07

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.

1 votesVote for this answer Mark as a Correct answer

prathap myl answered on May 27, 2014 23:11

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.

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.