I Have viewModel
var viewModel = {
amount: ko.observable(1),
rate: ko.observable(2),
rate222: ko.observable(2)
};
<input data-bind="value: amount" />
<input data-bind="value: rate" />
How do I know that rate222 not bind on this document?
- For need it for multi-page validation, for declared on exist document!
best regards
UPD:
This does not resolve this problem here jsfiddle.net/x26sS/14 Bind value "rate222" not in the DOM, but the knockout does not think so: "show,rate12312".