答案 0 :(得分:0)
根据此demo,您看到的行为似乎是使用filterable: { multi: true }
配置的列的默认行为。只有在您添加itemTemplate
时才需要自己处理标记。因此,例如,此列集合应该按照您想要的方式运行:
columns: [
{ field: "ProductName", filterable: { multi: true, search: true} },
{ field: "UnitPrice", title: "Unit Price", format: "{0:c}", width: 120, filterable: { multi: true } },
{ field: "UnitsInStock", title: "Units In Stock", width: 120, filterable: { multi: true } }
]
如果您使用itemTemplate
删除它应该可以解决您的问题。
希望这有帮助。