我想在我的页面上实现一个按钮,该按钮可以读取它所在的行并将其以变量的形式发送到该行的内容。
- 我的桌子
- 描述----因素-----依赖项-----按钮(<--只读这一行)
- description1---factor1----dependencies1----按钮
- 描述2---因素2----依赖项2----按钮
我正在使用 jquery 库,淘汰赛,特别是我使用 SimpleGrid(淘汰赛)来创建视图模型,但只是为了方便(所以它不是强制性的)。我最初的想法是为每一行创建一个表格,并使用已经在敲除示例中使用的指令。示例: http: //knockoutjs.com/examples/cartEditor.html。还有其他建议吗?
PS 在我的情况下,我直接修改 SimpleGrid 以在此时添加表单
templateEngine.addTemplate("ko_simpleGrid_grid", "\
<table class=\"ko-grid\" cellspacing=\"0\">\
<thead>\
<tr data-bind=\"foreach: columns\">\
<th data-bind=\"text: headerText\"></th>\
</tr>\
</thead>\
<tbody data-bind=\"foreach: itemsOnCurrentPage\">\
<tr data-bind=\"foreach: $parent.columns\">\
<td data-bind=\"text: typeof rowText == 'function' ? rowText($parent) : $parent[rowText] \"></td>\
</tr>\
</tbody>\
</table>");
感谢您的关注