knockout.jsモデルのページがあります。シリアル化されたオブジェクトの計算されたプロパティをバインドすることにより、データをJSON形式のテキストボックスに「シリアル化」しています。
動作する部品の選択:
モデルを見る
function CourseParticipant(name, facility) {
var self = this;
self.name = ko.observable(name);
self.facility = ko.observable(facility);
}
function CourseParticipantViewModel() {
var self = this;
self.participants = ko.observableArray();
self.participants.push(new CourseParticipant("Greg", "init"));
self.addParticipant = function(participant) {
self.participants.push(new CourseParticipant("", ""));
}
self.removeParticipant = function(participant) {
self.participants.remove(participant);
}
self.serializedValue = ko.computed(function() {
return ko.toJSON(self.participants(), null, null);
}, self);
}
ko.applyBindings(new CourseParticipantViewModel());
$("#btn").click(function(){
$(".fac").val('val');
})
HTML
<table class='pc-tbl'>
<tbody data-bind="foreach: participants">
<tr><td colspan='100%'>
<a href="#" data-bind="click: $root.removeParticipant">x</a></td></tr>
<tr>
<th>Name:</th>
<td><input data-bind="value: name" /></td>
</tr>
<tr>
<th>Facility:</th>
<td><input data-bind="value: facility" class='fac' /></td>
</tr>
</tbody>
</table>
<br />
<textarea data-bind="value: serializedValue()" style='width:300px; height:100px;'></textarea>
<a href="#" data-bind="click: addParticipant">Add Participant</a>
<input type=button id='btn' value='test' />
私が問題を抱えているのは、フォームがJavaScriptを介して編集されたときにKnockoutに変更を検出させることです。この問題のサンプルはここにあります:http: //jsfiddle.net/oglester/tQzu2/
問題は、テストボタンをクリックしてフォームを更新しても、モデルが更新されないことです。フォームにビューモデルに通知させるにはどうすればよいですか?