将多个自定义属性添加到购物车中的同一列

时间:2014-05-09 18:00:33

标签: javascript attributes simplecart

我现在已经尝试了几个小时,将SimpleCarts购物车中的多个自定义属性添加到同一列(如连接)。我能得到的最远的是:

我已设置购物车列:

    cartColumns: [
    { attr: "name", label: "Name"},
    { attr: "pouch-one", label: "Content1"}, -- Custom Attribute One -- 
    { attr: "pouch-one-cost", label: "Content2"}, -- Custom Attribute Two --
    { view: "currency", attr: "price", label: "Price"},
    { view: "decrement", label: false},
    { attr: "quantity", label: "Qty"},
    { view: "increment", label: false},
    { view: "currency", attr: "total", label: "SubTotal" },
    { view: function(item, column){return item.quantity();}, attr: "custom" ,label: "Quantity"},
    { view: "remove", text: "Remove", label: "Remove Line Item"}
],

我也尝试将以上属性添加到此列中:

    { view: function(item, column){return item.pouch-one() + " $" + item.quantity()*item.pouch-one-price;}, attr: "custom" ,label: "Quantity"},

至于购物车中列的显示,我会隐藏它们,显示无。

每次我尝试过,我只能获得simpleCart默认的普通字段(ID,Price,Qty等),而不是任何自定义属性。

我是否应该将这些添加到SimpleCart的默认字段中?

这些字段的原因是客户想要分析主要价格,因为它是一个分组产品。

非常感谢任何帮助。谢谢。

0 个答案:

没有答案