I have created a simple plunker: http://plnkr.co/edit/sxJBufp0hVlmqlHGfJ2e
Main problem is that i cannot set header title empty.
If i put attribute title= null or empty string field name is showed.
If i use custom kendoGridHeaderTemplate i have link concerning sort feature on header dom.
Any advice how to have header empty?
Thanks.
This has been around since kendo for jQuery. The workaround is to use a space, so title=" " 馃槃
Thanks @PeterStaev but i think to use space to disable title is not so correct. am i right?
We should be able to make a distinction between undefined and empty string. Will look into it.
This bug should be fixed in version 0.26.4 of the Grid. Please note that:
<kendo-grid-column field="ProductName" title="">
</kendo-grid-column>
<kendo-grid-column field="ProductName" [title]="null">
</kendo-grid-column>
undefined will still display the field name:<kendo-grid-column field="ProductName" [title]="">
</kendo-grid-column>