我正在尝试在Kendo标签的两个单独标签上显示两个Kendo UI网格。它仅显示选项卡内部的网格,其中所选选项为true。这是我的代码:
ArrayBuffer(
(home,cat),
(home,dog),
(home,fish),
(farm,cow),
(farm,horse),
(wild,tiger),
(wild,elephant)
)
答案 0 :(得分:0)
I got my solution working. For future reference, I'm posting here.
The problem was that although I included "kendo.all.min.js" into my layout file, "kendo.aspnetmvc.min.js" was not included, an in order for this to work properly, I had to include this second javascript file too.
I added it to my _Layout.cshtml file.