我将以下KendoUI模板绑定到observable。当我将一个新项目推送到可观察数组时,如何将kendoNumericTextBox仅应用于模板中的新项目?
如果我按类应用,它会使现有数字文本框上的微调器加倍,这会产生奇怪的效果。
<div id="slots">
<table class="table table-striped table-condensed" style="width:auto;">
<thead>
<tr>
<th>Date</th>
<th>Time</th>
<th>Volunteers Needed</th>
<th>
Reservation Passcode <i class="icon-question-sign" title ="Only people with the reservation passcode can signup."></i>
</th>
</tr>
</thead>
<tbody data-template="row-template" data-bind="source: slots">
</tbody>
</table>
</div>
$(document).ready(function () {
var viewModel = kendo.observable({
slots: [{DateText:'1/8/1969', ShiftLabel: "3:00 to 5:00",Slots:2,ReservationCode:"ABC" }]
});
kendo.bind($("#slots"), viewModel);
$(".numeric").kendoNumericTextBox({
format: "n0"
});
viewModel.slots.push({DateText:'1/8/1969', ShiftLabel: "3:00 to 5:00",Slots:2,ReservationCode:"ABC" });
$(".numeric").kendoNumericTextBox({
format: "n0"
});
});
感谢您的帮助!
答案 0 :(得分:1)
尝试将模板定义为:
<script type="text/x-kendo-tmpl" id="row-template">
<tr>
<td>#= DateText #</td>
<td>#= ShiftLabel #</td>
<td class="numeric"><input data-role="numerictextbox" data-format="n0" data-bind="value: Slots"></td>
<td>#= ReservationCode #</td>
</tr>
</script>
并删除$(".numeric").kendoNumericTextBox(...)
初始化。这样做,每次运行模板时都应该NumericTextBox
(每行一个)。
您的JavaScript是这样的:
$(document).ready(function () {
var viewModel = kendo.observable({
slots: [
{DateText: '1/8/1969', ShiftLabel: "3:00 to 5:00", Slots: 2, ReservationCode: "ABC" }
]
});
kendo.bind($("#slots"), viewModel);
viewModel.slots.push({DateText: '1/8/1969', ShiftLabel: "3:00 to 5:00", Slots: 3, ReservationCode: "ABC" });
});
看到它在这里运行http://jsfiddle.net/OnaBai/BV48W/
<强>为什么:强>
你使用CSS类(.numeric
)的事实导致你最终在另一个内部有一个KendoUI数字文本框。
示例:您有以下HTML:
<label>Number 1: <input id="number1" class="numeric"/></label>
<label>Number 2: <input id="number2" class="numeric"/></label>
和JavaScript
$(document).ready(function () {
$(".numeric").kendoNumericTextBox({
format: "n0"
});
$(".numeric").kendoNumericTextBox({
format: "n0"
});
});
你会看到你所谓的在现有数字文本框上加倍微调器的奇怪效果。
每次使用kendoNumericTextBox
选择器调用.numeric
时,都会向元素添加一个额外的微调器。如果它没有微调器(数据刚刚添加到viewModel
),则会获得一个但是然后添加数据并使用kendoNumericTextBox
选择器调用.numeric
前一个元素得到另一个。