-1

我在ko模板中有一个foreach,在里面我想绑定datepicker。它是如何完成的

<script type="text/html" id="Date_List">
       From &nbsp;&nbsp;<input type="text" id = "DateFrom" name="DateFrom" data-bind="value: Queries()[0].QueryValueFrom" class="calendar" /><br/><br/>
    To &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" id = "DateTo" name="DateTo" data-bind="value: Queries()[0].QueryValueTo" class="calendar" />
</script>

当我将它与 for each loop 绑定时。我无法弹出日历

4

1 回答 1

1

使用自定义日期选择器绑定,我的绑定集合中有一个

https://github.com/AndersMalmgren/Knockout.Bindings

<input data-bind="datepicker: date, datepickerOptions: { minDate: date }" />
于 2012-11-22T10:21:26.310 回答