Выбивание шаблона с помощью data-bind to image src свойство не работает
Я не вижу, что здесь не так, но изображение не отображается с помощью следующего шаблона нокаута:
<script type="text/html" id="legend-template">
<div><input type="checkbox" data-bind="click : doSomething" ></input>
<img width="16px" height="16px" data-bind="src: 'imagePath'" />
<span data-bind="text : label"> </span>
</div>
</script>
объект, к которому это привязано, выглядит так:
tut.myObject= function (imagePath, label) {
this.label = ko.observable(label);
this.imagePath = ko.observable(imagePath || liveString + '/Content/images/marker.png');
};
tut.myObject.prototype = {
doSomething: function () { alert("do what?");
}
};
когда объект HTML отображается я вижу метку и нажав на флажок вызывает doSomething.
ТИА.