私が間違っていることはありますか?Uncaught TypeError: Object [object Object] has no method 'selectedBases' below is my codeというエラーメッセージが表示されるため
this.selectedBases = ko.observable();
this.selectedBases.subscribe(function (options) {
if(options.length >0){
if (options.find('select_all')) {
self.selectedBases(options.intersect('select_all'));
}
}
});