Is there an easy way to hide the entire detail template expansion chevron and associated column? We'd like to control the expansion through other means.
1 Answer, 1 is accepted
0
Nikolay Rusev
Telerik team
answered on 22 Oct 2014, 08:08 AM
Hello Chris,
There isn't built-in way of doing this. You can however remove hierarchical col elements and hide hierarchical cells inside dataBound event:
dataBound: function() {
this.wrapper.find(".k-hierarchy-col").remove();//remove col elements for hierarchy column
this.wrapper.find(".k-hierarchy-cell").hide();//remove cell elements for hierarchy column