Hi Guys,
I am trying to create a nested repeater.
I have tried the below code in the parnet repeater's transformation but is not giving appropriate results:
Code: 1
<cms:CMSRepeater ID="RepeaterCourses" runat="server" ClassNames="Northtec.CoursePages" TransformationName="northtec.coursepages.northtec-courseslistinginprogrammes" Path=""+ Eval("NodeAliasPath") +"/%" SelectOnlyPublished="true" />
Output
[CMSDataProperties.LoadTransformation]: The server tag is not well formed
Code : 2
<cms:CMSRepeater ID="RepeaterCourses" runat="server" ClassNames="Northtec.CoursePages" TransformationName="northtec.coursepages.northtec-courseslistinginprogrammes" Path="/{0}/{1}/%" SelectOnlyPublished="true" />
Output:
Shows all the results of that document type.
Code 3:
<cms:CMSRepeater ID="RepeaterCourses" runat="server" ClassNames="Northtec.CoursePages" TransformationName="northtec.coursepages.northtec-courseslistinginprogrammes" Path="/Programme/Agriculture/%" SelectOnlyPublished="true" />
Output:
This gives me right results for only 1st category. By trying the 3rd code it proves that only the path is wrong everything else is fine.
Any ideas what mistake am I doing with the path.
Thanks
Gitesh Shah