Is there a way to allow html in a column?
<kendo-grid-column field="description" title="Description" [encoded]="false"></kendo-grid-column>gives me the error "encoded is not a known property"
<kendo-grid-column field="description" title="Description"> <ng-template kendoGridCellTemplate let-dataItem> {{ htmlDecode(dataItem.description) }} </ng-template> </kendo-grid-column>Doesn't decode either.
Any solution or workaround?
