敲除"未绑定"的选项元素的条件样式SELECT元素

时间:2014-08-25 17:52:28

标签: css knockout.js conditional

我页面上的各种输入都是​​通过敲除绑定到视图模型,比方说客户记录。这一切都很好。

现在,我想在页面顶部放置一个SELECT,其中包含所有客户列表。用户将选择一个客户,该记录将从数据库中获取,并且数据将绑定到视图模型。

我的问题涉及SELECT列表中项目的条件样式。它将绑定到一组客户对象。 Customer对象定义有一个名为 hasExpired 的函数:

   var Customer = function (id, name, expiryDate) {
    this.id = id;
    this.customerName = name;
    this.expiryDate = expiryDate;
    this.hasExpired =  function() {
        return this.expiryDate == null ? false : true; 
      };
    };

页面上的输入绑定到的ViewModel如下所示:

      function ViewModel() {
            var self=this;
             self.customerRegion = ko.observable(),
             self.customerName = ko.observable(),
             .
             .
             .
             self.allCustomers = Customers,  // Customers is an array of Customer objects
             self.selectedCustomer = ko.observable()



     }

这个淘汰赛绑定工作; SELECT已正确填充客户列表:

    <select id="customerSelect" 
             data-bind="options: allCustomers,
            optionsText: 'customerName', 
            value:   selectedCustomer />

我想为单个OPTIONS设置样式,如果合适,添加“过期”类。

Customers SELECT中的各个项目未绑定到视图模型。 SELECT功能类似于导航菜单。选项绑定到allCustomers数组中的customer对象。

如何告诉knockout查询绑定到每个OPTION的客户对象的hasExpired属性,以确定该特定选项是否应该获得expired属性?

我希望客户留在“选择”列表中,但要显示带有删除线格式。

SELECT是否需要自己的视图模型?

1 个答案:

答案 0 :(得分:7)

options binding有一个参数(optionsAfterRender),允许对选项元素进行额外处理。请参阅注意2:对生成的选项进行后处理通过链接文档)。

除非我误解了数据模型的结构,否则所需的只是回调

self.setOptionStyling = function(option, item) {
   ko.applyBindingsToNode(option, {css: {expired: item.hasExpired()} }, item);
}

绑定到optionsAfterRender参数:

<select id="customerSelect" 
        data-bind="options: allCustomers,
                   optionsText: 'customerName', 
                   value: selectedCustomer,
                   optionsAfterRender: setOptionStyling" />

expired css类定义为:

.expired {
   text-decoration: line-through;
}

Fiddle