Hi
I have a problem with a queryrepeater in which i need to pass the WhereCondition, I already try to do like proposed solution in that
Nested Repeaters Where condition but it doesn't work my code is like this:
<cc1:queryrepeater id="CMSRepeater1" runat="server" TransformationName="customtable.temas.Titulo" QueryName="customtable.temas.selectdocuments"
SelectTopN="1" />
<h2><%# Eval("Titulo") %></h2>
</div>
<script runat="server">
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
CMSRepeater1.WhereCondition= "nombreTema = "+ Eval("Tema");
CMSRepeater1.ReloadData(true);
}
</script>
that is in a selected transformation loading by a repeater
another question is why if kentico is in version 7 this webpart still not have the delayed property?
I appreciate your answers