Friday, August 3, 2018

Sencha ext js override childrens viewModel data

Sencha ext js override childrens viewModel data


This wont work:

{
xtype: note-detail,
viewModel: {
data: {
// unsuccessful attempt to override childrens data.record
// with value from parents data.noteRecord
record: {noteRecord}
}
}
}
This will:

{
xtype: note-detail,
viewModel: {
// successful attempt to override childrens data.record
// with value from parents data.noteRecord
formulas: {
record: function(get){
return get(noteRecord)
}
}
}
}


go to link download

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.