I am using new tfs aggregator from https://github.com/tfsaggregator/tfsaggregator/
Numeric fields are working great. But now i have a request to copy text field from from parent to child.
i wrote that rule
<rule name="FieldCopy"
appliesTo="*">
<![CDATA[
if (self.HasChildren())
{
foreach (var child in self.Children)
{
child["Title"] = self["Title"];
}
}
]]>
</rule>
But it dous not work. Where can i find any examples with child aggregations? Or what have i done wrong?
UPD: It works good with text fields like Title. But Fields with type FieldControl dont copying.