如何在标签条的单独Kendo标签内显示Kendo网格?

时间:2016-04-01 21:22:59

标签: kendo-ui telerik kendo-grid kendo-asp.net-mvc telerik-grid

我正在尝试在Kendo标签的两个单独标签上显示两个Kendo UI网格。它仅显示选项卡内部的网格,其中所选选项为true。这是我的代码:

ArrayBuffer(
  (home,cat), 
  (home,dog), 
  (home,fish), 
  (farm,cow), 
  (farm,horse), 
  (wild,tiger), 
  (wild,elephant)
)

1 个答案:

答案 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.