リスト内の項目のコールバック内からルート ビューモデルにアクセスする方法はありますか?
例:
function Employee() {
var self = this;
this.notes = ko.observableArray();
this.addNote = function() {
// need to access the EmployeeViewModel here in order to set its detailedNote
}
}
function EmployeeViewModel() {
var self = this;
this.employees= ko.observableArray([]);
// observables used as placeholders in modal windows
this.detailedEmployee = ko.observable();
this.detailedNote = ko.observable();
}