我是 Kendo 的新手,在将小部件应用于动态 KO 数组时遇到问题。我有一个可观察的数组,它加载一组初始元素并允许通过样式将 kendoNumericTextBox 应用于每个框。但是,在向数组添加元素后,Kendo 小部件不再出现。我创建了一个显示行为的小提琴。
http://jsfiddle.net/fiddlesticks66/WekFG/
看法
<code>
<div data-bind="foreach:rows">
<input class="percentage" data-bind="value:percent" />
</div>
<button data-bind="click:addRow">add row</button>
</code>
虚拟机
<code>
function newVM(){
self=this;
self.rows = ko.observableArray([
{ percent: 0 },
{ percent: 0.25 },
{ percent: 0.50 } ]);
self.addRow = function(){
this.rows.push({percent:0});
};
return self;
}
</code>
JS申请剑道
<code>
$(".percentage").kendoNumericTextBox({
format: "p0",
min: 0,
max: 1,
step: 0.25
}).data("kendoNumericTextBox");
</code>
提前致谢