1

我有这个填充了 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 不起作用。在我看来,我应该以某种方式将选项(标题、可折叠、活动等)传递给绑定函数,但是如何?

4

1 回答 1

1

您已经在 bindinghandler init 函数中将绑定选项传递给手风琴插件

var options = valueAccessor();
$(element).accordion(options);

因此,传递给绑定的任何参数都将传递给手风琴插件

<div id="accordion" data-bind="jqAccordion: { 
                               header: "> div > h3",
                               collapsible: true,
                               active: false,
                               heightStyle: "content"
                            }"></div>

您还可以考虑向 init 函数添加逻辑以适应默认值,这样您就不必每次都传递每个参数(警告:下面的示例代码不是跨浏览器)

var options = valueAccessor();
options.collapsible = options.collapsible === undefined ? true : options.collapsible; 
options.active = options.active === undefined ? false : options.active;

$(element).accordion(options);
于 2013-09-13T11:57:49.563 回答