0

我想用 Treeview 结构数据实现 kendoAutoComplete。kendoDropDownTree 工作正常,但我需要与 kendoAutoComplete 完全一样的行为。我想输入输入控件并且值应该被过滤。

kendoAutoComplete 适用于单值集合而不是树视图结构。

以下是我的示例数据源:

[
                {
                    "text": "Furniture", expanded: true, "items": [
                        { "text": "Tables & Chairs" },
                        { "text": "Sofas" },
                        { "text": "Occasional Furniture" }
                    ]
                },
                {
                    "text": "Decor", "items": [
                        { "text": "Bed Linen" },
                        { "text": "Curtains & Blinds" },
                        { "text": "Carpets" }
                    ]
                }
            ]

如果有人建议如何进行此操作将会很有帮助。

4

0 回答 0