hi,
ii hava a view like this:
IOL_Info.SupplierData = M.View.design({
childViews: 'nameLabel cityLabel name',
nameLabel : M.LabelView.design({
value: 'Name: '
}),
cityLabel : M.LabelView.design({
value: 'Ort: '
}),
name: M.LabelView.design({
computedValue: {
contentBinding: {
target: IOL_Info.supplierDetailController,
property: 'supplierDetailItem'
},
operation: function(v) {
if(v) {
return v.get('name');
}
}
},
isInline: NO
})
})
on a other view i will use this view:
content: M.ScrollView.design({
childViews : 'content',
content : IOL_Info.SupplierData
}),
this works fine but if i use this on a 2nd view then i have double contend on rendering. is this a bug ?