gpt4 book ai didi

knockout.js - 在 knockout 绑定(bind)中为 child 设置标签索引

转载 作者:行者123 更新时间:2023-12-04 04:56:40 25 4
gpt4 key购买 nike

我有一个使用 knockout 绑定(bind)的表数据。在这里,我有父子行。例如

 <tr>
<td>
<select data-bind="value:Required, enable:RequiredActive, attr:{tabindex: 43 * ($index() + 1) }">
<option value="E">Eligible</option>
<option value="O">On</option>
<option value="F">Off</option>
</select>
</td>
<td>
<input data-bind="value:SetupTime, attr: { title: tabindex: 44 * ($index() + 1) }"/>
<input data-bind="value:CloseTime, attr: { title: tabindex: 45 * ($index() + 1) }" />
</td>
<td>
<table>
<tbody data-bind="foreach: WorkSegments">
<tr>
<td>
<select data-bind="options:Locations, value:Location, optionsText: 'Name', optionsValue: 'ID', attr:{tabindex: 49 * ($parentContext.$index + 1) }" >
</select>
</td>
</tr>
</tbody>
</table>
</td>
<td>
<table>
<tbody data-bind="foreach: WorkSegments">
<tr>
<td>
<select class="combobox" data-bind="options:EmployeeRoles, value:Role, optionsText: 'Name', optionsValue: 'ID', attr:{tabindex: 49 * ($parentContext.$index + 1)}" >
</select>
</td>
</tr>
</tbody>
</table>
</td>

</tr>

在这里,Location 和 EmployeeRole 下拉菜单是子项,可以在父项中多次出现。因此,在设置选项卡索引时,我使用了'$parentContext.$index',但在运行时,对于所有子控件,我得到 tabindex='NAN'

我也尝试过使用 $parent.index(),但没有运气。

感谢一些帮助

最佳答案

您应该使用 $parentContext.$index()不是 $parent.index() :

<select data-bind="options:Locations, value:Location, optionsText: 'Name', optionsValue: 'ID', attr:{tabindex: 49 * ($parentContext.$index() + 1) }" >
</select>

这是工作示例: http://jsfiddle.net/CVL4q/

关于knockout.js - 在 knockout 绑定(bind)中为 child 设置标签索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16667389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com