Hi,
The nested controls with dynamic where condition scenarios can be tricky.
There were some discussions
here in the forums for example.
Generally, you could use something like this in the Users listing transformation:
<cms:CMSRepeater ID="nestedRep" runat="server"
ClassNames="CMS.Blog"
TransformationName="CMS.Blog.preview"
Path="/%" SelectOnlyPublished="true" WhereCondition='<%# "NodeOwner = " + Eval(UserID) %>' />
The where condition (may need some corrections) should select appropriate records, but it is set too late within the controls lifecycle so you will need to reload the data -
the following script has to be a part of the transformation (e.g. at the and of the transformation text):
<script runat="server">
protected override void OnPreRender(EventArgs e)
{
nestedRep.ReloadData(true);
}
</script>
Maybe you could also consider using an alternative -
Universal or
Hierarchical viewer with Hierarchical transformations,
described in DevGuideHope it will help.
Regards,
Zdenek