What’s wrong with this? Having issues setting the values using additionalConditions property. All the fields are triple checked to be included in all models. Values are showing on this.Id and children.data[0].Id when setting breakpoints.
Rows get created without fields placed in additionalConditions property.
var params = arguments[0], parents = skuid.$M('parents'), children = skuid.$M('children'), grandchildren = skuid.$M('grandchildren'), $ = skuid.$; $.each(parents.getRows(), function (){ children.createRow({ additionalConditions:[ {parent: this.Id} ] }); grandchildren.createRow({ additionalConditions:[ {parent: children.data[0].Id} ] }); });<br>