私の Web ページでは、マスター/詳細シナリオに次のビューモデルを使用しています。
ko.extenders.myrequired = function (target, overrideMessage) {
//add some sub-observables to our observable
target.hasError = ko.observable();
target.validationMessage = ko.observable();
//define a function to do validation
function validate(newValue) {
target.hasError(newValue ? false : true);
target.validationMessage(newValue ? "" : overrideMessage || "This field is required");
}
//initial validation
validate(target());
//validate whenever the value changes
target.subscribe(validate);
//return the original observable
return target;
};
function PluginViewModel() {
var self = this;
self.name = ko.observable();
self.code = ko.observable();
}
function item() {
var self = this;
self.id = ko.observable();
self.listIndex = ko.observable();
self.value = ko.observable();
self.label = ko.observable();
self.tabPos = ko.observable();
self.plugins = ko.observableArray();
};
function TableViewModel() {
var self = this;
self.id = ko.observable();
self.name = ko.observable();
self.viewName = ko.observable().extend({ myrequired: "Please enter a view name" });
self.columns = ko.observableArray();
self.filteredColumns = ko.observableArray();
}
function SchemaViewModel() {
var self = this;
self.name = ko.observable();
self.tables = ko.observableArray();
// Table selected in left panel
self.selectedTable = ko.observable();
self.selectTable = function (p) {
self.selectedTable(p);
}
}
そのため、selectedTable の "<"li">" をクリックすると、knockoutjs バインディングにより、viewName フィールドを書き込むための入力テキストなどの他のフィールドが表示されます。
これは HTML コードです:
<div>
<ul class="list" data-bind="foreach: tables">
<li><a data-bind="text: name, click: $parent.selectTable"></a></li>
</ul>
</div>
<div>
<div id="editor-content">
<section id="viewNameSection">
<div data-bind="with: selectedTable">
<label>View name: </label>
<input id="txtViewName" class="inputs" data-bind="value: viewName, valueUpdate: 'input'" placeholder="eg. MyView" />
<span data-bind="visible: viewName.hasError, text: viewName.validationMessage"></span>
</div>
</section>
</div>
</div>
問題は、txtViewName が空であってもメッセージが表示されないことです。エクステンダーが検証を開始しないようです。
私が間違っているのは何ですか?
編集: 面白いことに、同じコードのコピー/貼り付けでJfiddleが機能することです!
違いがよくわかりません。