简体   繁体   English

没有标题行的kendo-grid指令

[英]kendo-grid directive without header row

Does Kendo UI - Grid / AngularJS support a grid without header row ? Kendo UI-Grid / AngularJS是否支持不带标题行的网格?

Mean to get - 意味着-

在此处输入图片说明

instead of - 代替 -

在此处输入图片说明

If so , how does its options should look like ? 如果是这样,其options应如何?

(I'm looking for 100% Kendo UI API solution , any other hacking I can do it myself) (我正在寻找100%的Kendo UI API解决方案,我可以自己做任何其他黑客操作)

Not sure if you consider this a 100% KendoUI solution, but on dataBound , you could hide the thead field 不知道您是否认为这是100%的KendoUI解决方案,但是在dataBound上 ,您可以隐藏thead字段

dataBound: function(e) {
  e.sender.thead.hide();
}

DEMO 演示

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM