This library adds two new binding handlers to Knockout that allow observables to be initialized from pre-rendered HTML content:
init
: initialize an observable to a value retrieved from existing HTML content.foreachInit
: wraps theforeach
binding, with the observable array's elements bound to existing HTML elements.
Suppose we have the following view model:
function ViewModel() {
this.name = ko.observable();
}
Normally, you'd bind the name
observable to an HTML element as follows:
<span data-bind="text: name">Michael Jordan</span>
Once the binding has been applied however, the text within the <span>
element will be cleared, as the bound observable did not have a value (existing HTML content is ignored).
We can fix this by specifying the init
binding handler before the text
binding handler:
<span data-bind="init, text: name">Michael Jordan</span>
Now, the text within the <span>
element is left unchanged. This is due to the init
binding handler setting the observable's value to the text content of the bound element. As Knockout binding handlers are executed left-to-right, when the text
binding executes the init
binding will already have initialized the observable.
You can combine the init
handler with any binding, as long as you ensure that it is listed before the other bindings:
<span data-bind="init, textInput: name">Michael Jordan</span>
<!--
This binding will use the "value" attribute to initialize the observable
-->
<input data-bind="init, value: name" value="Larry Bird" type="text" />
By default, the init
binding will set the observable's value to a string. If you want to convert to a different type, you can specify a convert function:
<span data-bind="init: { convert: parseInt }, text: height">198</span>
Now, the observable's value will be set to what the convert
function, with the innerText
value as its parameter, returns.
It is also possible to use your own, custom conversion function. You could, for example, define it in your view model:
function CustomConvertViewModel() {
this.dateOfBirth = ko.observable();
this.parseDate = function(innerText) {
return new Date(Date.parse(innerText));
};
}
You can then use this custom convert function as follows:
<span data-bind="init: { convert: parseDate }, text: dateOfBirth"
>February 17, 1963</span
>
You can also use the init
binding handler as a virtual element:
<!-- ko init: { field: name }
-->Michael Jordan<!--
/ko
-->
Converting works the same as before:
<!-- ko init: { field: height, convert: parseInt }
-->198<!--
/ko
-->
Note that we now need to explicitly specify the field
parameter, which points to the observable to initialize. In our previous examples, the init
binding was able to infer this due to it being combined with the text
, textInput
, value
or checked
binding and using the observable they were pointing to. As a consequence, the following bindings are equivalent:
<span data-bind="init, text: name">Michael Jordan</span>
<span data-bind="init: { field: name }, text: name">Michael Jordan</span>
If you provide a value
parameter to the init
binding, that value will be used to initialize the observable instead:
<span data-bind="init: { field: name, value: 'Larry Bird' }, text: name"
>Michael Jordan</span
>
This would result in the observable's value being set to "Larry Bird"
, and thus the element's content is changed once the text
binding is applied.
If you want to initialize multiple observable's at once, you just specify them as key/value pairs:
<span data-bind="init: { city: 'London', year: 230 }"></span>
This would set the city
observable to "London"
and the year
observable to 230
.
Note: the keys cannot be equal to the "value"
, "convert"
or "field"
strings.
The init
binding can be used with the following bindings:
text
: the value is set to the bound element's text contents.textInput
: the value is set to the bound element's text contents.value
: the value is set to the bound element's value.html
: the value is set to the bound element's inner HTML value.attr
: the bound attribute properties are set to their respective attribute values.checked
: the value is set to the bound element's checked value of both checkbox and radio inputs.visible
: the value is set totrue
orfalse
depending on the bound element's visibility.enable
: the value is set totrue
if the bound element does not have adisabled
attribute; otherwise, it is set tofalse
.disable
: the value is set totrue
if the bound element has adisabled
attribute; otherwise, it is set totrue
.
This binding handler wraps the foreach
binding, but instead of creating new HTML elements, it binds to existing HTML elements. Consider the following view model:
function PersonViewModel() {
this.name = ko.observable();
}
function ForeachViewModel() {
this.persons = ko.observableArray();
this.persons.push(new PersonViewModel());
this.persons.push(new PersonViewModel());
this.persons.push(new PersonViewModel());
}
We can bind the elements in the persons
observable array to existing HTML elements by using the foreachInit
binding handler:
<ul data-bind="foreachInit: persons">
<li data-template data-bind="text: name"></li>
<li data-init data-bind="init, text: name">Michael Jordan</li>
<li data-init data-bind="init, text: name">Larry Bird</li>
<li data-init data-bind="init, text: name">Magic Johnson</li>
</ul>
There are several things to note:
- There must be one child element with the
data-template
attribute. This element will be used as the template when new items are added to the array. - Elements to be bound to array items must have the
data-init
attribute. - You can use the
init
binding handler to initialize the array items themselves.
You can also use a template that is defined elsewhere on the page:
<ul data-bind="foreachInit: { name: 'personTemplate', data: persons }">
<li data-bind="init, text: name">Michael Jordan</li>
<li data-bind="init, text: name">Larry Bird</li>
<li data-bind="init, text: name">Magic Johnson</li>
</ul>
<script type="text/ko-template" id="personTemplate">
<li data-bind="text: name"></li>
</script>
Note: if you use a named template, the data-init
and data-template
can be omitted.
Up until now, we assumed that the observable array already contained an item for each HTML element bound inside the foreachInit
section. However, you can also have the foreachInit
binding handler dynamically add an element for each bound element.
Take the following view model:
function ForeachDynamicViewModel() {
this.persons = ko.observableArray();
this.addPerson = function() {
this.persons.push(new PersonViewModel());
};
}
Note that the persons
observable array does not contain any elements, but that it does have a function to add a new element to the array.
We can use the foreachInit
binding handler as follows:
<ul data-bind="foreachInit: { data: persons, createElement: createPerson }">
<li data-template data-bind="text: name"></li>
<li data-init data-bind="init, text: name">Michael Jordan</li>
<li data-init data-bind="init, text: name">Larry Bird</li>
<li data-init data-bind="init, text: name">Magic Johnson</li>
</ul>
What happens is that for each element with the data-init
attribute, the function specified in the createElement
parameter is called. Our modified code now looks as follows:
function ForeachDynamicViewModel() {
this.persons = ko.observableArray();
this.createPerson = function() {
return new PersonViewModel();
};
}
The foreachInit
binding does not immediately process changes. Instead, it queues all changes, which it then later processes all at once. If you want to do additional processing before or after each queue processing round, you can use the dataChanged
, beforeQueueFlush
and afterQueueFlush
attributes:
<ul
data-bind="foreachInit: { data: persons, dataChanged: dataChanged, beforeQueueFlush: beforeQueue, afterQueueFlush: afterQueue }"
>
<li data-template data-bind="text: name"></li>
</ul>
All three attributes point to callback functions with one argument: the change queue being processed. Each change item in this queue has three properties:
index
: the index of the item in the underlying array.status
: indicates the status of the change item, eitherexisting
,added
orremoved
.value
: the array item being processed.
We can use these callbacks in our view model as follows:
function ForeachQueueCallbackViewModel() {
this.persons = ko.observableArray();
this.dataChanged = function(changes) {
console.log(changes.added.length + " items have been added");
console.log(changes.existing.length + " items were modified");
console.log(changes.deleted.length + " items were deleted");
};
this.beforeQueue = function(changeQueue) {
console.log(changeQueue.length + " queued items will be processed");
};
this.afterQueue = function(changeQueue) {
console.log(changeQueue.length + " queued items have been processed");
};
}
There are two main differences between the dataChanged
and beforeQueue
callbacks:
- The
dataChanged
callback is also called upon initialization, when the input array may be empty. - The
dataChanged
callback on receives the new changes that will be added to the queue, whereasbeforeQueue
will receive the complete queue.
The best way to install this library is using Bower:
bower install knockout-pre-rendered
You can also install the library using NPM:
npm install knockout-pre-rendered --save-dev
The library is also available from a CDN.
There is a JSBin demo for each of the binding handlers:
foreachInit
bindingforeachInit
binding using createElementforeachInit
binding using templateinit
with text bindinginit
with value bindinginit
with html bindinginit
with attr bindinginit
with checked binding for checkboxinit
with checked binding for radioinit
with visible bindinginit
with enable bindinginit
with disable bindinginit
binding
Date | Version | Changes |
---|---|---|
2019-01-16 | 0.11.0 | Support multiple bindings on a single element. (by revengineering). |
2018-11-09 | 0.10.1 | Fix for repeating tables. (by penguinstampede). |
2018-06-23 | 0.10.0 | Support plain JS and ko-es5 models. (by revengineering). |
2018-06-06 | 0.9.2 |
Added nodesPerElement option. (by revengineering) Fixed some browser compatibility bugs. |
2017-06-12 | 0.9.1 | Fix virtual elements children bug. |
2016-10-07 | 0.9.0 |
More efficient setting of initial elements for backing observables. Allow computed observables as backing. |
2016-06-09 | 0.8.0 | Added `dataChanged` callback. |
2016-08-08 | 0.7.2 | Fixed bug with missing attribute values. |
2016-06-27 | 0.7.1 | Fixed <tr> in <script> template bug. |
2015-10-06 | 0.7.0 | Fixed window.document bug. |
2015-08-30 | 0.6.0 | Added support for `attr`, `html`, `visible`, `enable` and `disable` bindings. |
2015-08-24 | 0.5.3 | Fixed $index not updating when deleting items. |
2014-08-14 | 0.5.2 | Fixed missing $index property in foreachInit binding. |
2014-08-06 | 0.5.1 |
Fixed bug where foreachInit did not correctly read template. Added links to two more foreachInit demo's. |
2014-05-27 | 0.5.0 | Added support for `checked` binding handler. |
2014-05-03 | 0.4.1 | Fixed named template bug. |
2014-05-02 | 0.4.0 | Added support for initialization through key/value pairs. |
2014-04-22 | 0.3.0 | Combined textInit, valueInit and init binding handlers into single init binding. |
2014-04-13 | 0.2.0 | Added support for automatically creating missing array elements. |
2014-04-12 | 0.1.1 | Added Bower support. |
2014-04-11 | 0.1.0 | None. Initial version. |
Many thanks go out to Brian M Hunt, which fastForEach
binding handler formed the basis of the foreachInit
binding handler.