I'm using knockout.js (v2.2.1) for the first time, and am trying to build a table where elements toggle between text and input fields based on an "IsReadOnly" property in the view model. This is accomplished using "visible" on span and input tags within the table cells.
Here's the table:
<table>
<tr>
<td colspan="2">
<button id="btnEditSave" data-bind="text: btnEditSave, click: doEditSave" style="float:right;" />
</td>
</tr>
<tr>
<td>Server Name: </td>
<td>
<span data-bind="text: Server.ServerName, visible: IsReadOnly() == true" />
<input data-bind="value: Server.ServerName, visible: IsReadOnly() == false" maxlength="50" style="width:400px;" />
</td>
</tr>
</table>
and the model:
var ServerViewModel = function () {
// Data
var self = this;
self.IsReadOnly = ko.observable(true); // the form's input mode
self.btnEditSave = ko.observable("Edit"); // the Edit/Save button text
self.Server = ko.observable({}); // the Server object
// Operations
self.doEditSave = function () {
var flag = self.IsReadOnly();
if (flag) {
// switch to Edit mode
self.btnEditSave("Save");
self.IsReadOnly(false);
}
else {
// will eventually save the form data here...
// switch back to readOnly
self.btnEditSave("Edit");
self.IsReadOnly(true);
}
}
}
Everything toggles as expected, except that the input field is not displayed. I've tried various forms of the input tag's "visible" expression, yet nothing works. What am I missing?