Hi all,
Finally we've found that there's actually a bug in the current version. I'm sorry for the inconvenience.
It will be fixed in the upcoming version. For now, there is quite simple workaround:
In your transformation (directly), please put the following code-behind script:
<script runat="server">
protected override void OnLoad(EventArgs e)
{
rptArticles.DataBindByDefault = true;
base.OnLoad(e);
}
</script>
Some more comments:
- If you want to specify custom path to the repeater (control) inside your transformation, you cannot connect it with the parent repeater using it's NestedControlsIDs property, because the path will be overriden in that case.
- DelayedLoading set to true is required for any custom functions that should supply the path in order to have "enough time".
Best regards,
Zdenek C.