我有一个可排序的手风琴,在名为“任务”的循环中加载了一个foreach-template
循环。ko.observableArray()
在手风琴中,我渲染了 the TaskId
、 theTaskName
和一个 task Description
-all ko.observable()
。
TaskName
并Description
在 input/textarea 元素中呈现。
每当TaskName
或Description
更改时,取消选择一个项目,或单击另一个项目,我想调用一个函数来通过 ajax 请求saveEdit(item)
将更新的内容发送TaskName
到数据库。Description
我需要将TaskId
与 Tasks-array 匹配以获取实际的键/值对以发送到saveEdit()
.
这是 HTML:
<div id="accordion" data-bind="jqAccordion:{},template: {name: 'task-template',foreach: Tasks,afteradd: function(elem){$(elem).trigger('valueChanged');}}"></div>
<script type="text/html" id="task-template">
<div data-bind="attr: {'id': 'Task' + TaskId}" class="group">
<h3><b><span data-bind="text: TaskId"></span>: <input name="TaskName" data-bind="value: TaskName /></b></h3>
<p>
<label for="Description" >Description:</label><textarea name="Description" data-bind="value: Description"></textarea>
</p>
</div>
</script>
这是绑定:
ko.bindingHandlers.jqAccordion = {
init: function(element, valueAccessor) {
var options = valueAccessor();
$(element).accordion(options);
$(element).bind("valueChanged",function(){
ko.bindingHandlers.jqAccordion.update(element,valueAccessor);
});
},
update: function(element,valueAccessor) {
var options = valueAccessor();
$(element).accordion('destroy').accordion(
{
// options put here....
header: "> div > h3"
, collapsible: true
, active: false
, heightStyle: "content"
})
.sortable({
axis: "y",
handle: "h3",
stop: function (event, ui) {
var items = [];
ui.item.siblings().andSelf().each(function () {
//compare data('index') and the real index
if ($(this).data('index') != $(this).index()) {
items.push(this.id);
}
});
// IE doesn't register the blur when sorting
// so trigger focusout handlers to remove .ui-state-focus
ui.item.children("h3").triggerHandler("focusout");
if (items.length) $("#sekvens3").text(items.join(','));
ui.item.parent().trigger('stop');
}
})
.on('stop', function () {
$(this).siblings().andSelf().each(function (i) {
$(this).data('index', i);
});
})
.trigger('stop');
};
};
我的第一个想法是放置线
$root.SelectedTask( ui.options.active );
在我的 viewModel 中定义的 ko.observable.on('click')
事件函数中。SelectedTask
但是,该.on('click')
事件似乎被调用了很多并且它产生了大量的流量。另外,我无法弄清楚将通过ajax函数从Tasks中选择的“项目”发送到数据库的save(item)调用的位置。
非常感谢任何帮助。提前致谢!:)