我有这个填充了 Tasks = ko.observableArray(); 的 jquery UI 手风琴;任务取决于选定的项目(未包含在以下代码中)。每当我选择一个新项目时,任务列表都会通过对数据库的 ajax 调用进行更新。以下代码提供了所有数据,也是在选择新项目后,但我无法控制我的行为(设置)。
这是我的 HTML w 淘汰赛:
<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>
还有手风琴脚本:
<script>
$(function () {
$("#accordion")
.accordion({
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', function () {
alert("triggered");
})
};
});
</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);
}
};
数组和值都可以并已更新,但手风琴不能折叠,并且 collapsible-option 不起作用。在我看来,我应该以某种方式将选项(标题、可折叠、活动等)传递给绑定函数,但是如何?