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?
Hi,
Is it possible to have grid component displaying worksheets at the bottom of the grid, similar to the way Excel has Sheets/tabs within workbook?
How can this be accomplished?
Regards,
Alex

I'm attempting to add a new row at the bottom of the grid but I don't know which option can help me with that. If there's no option, do you know a workaround for it? Please take the link as a code example to achieve this behavior. Thank you!
https://www.telerik.com/kendo-angular-ui/components/grid/editing/editing-row-click/
<kendo-timepicker formControlName='StartTime' [min]='pharmacyStartTime' [max]='pharmacyEndTime' required></kendo-timepicker>
Intial values:
PharmacyStartTime = 9:00 AM
PharmacyEndTime =1:00PM
In our application, we update the above start and end times with the user input. But the min and max values of time picker component don't update.
Appreciate any help.
HI to All
Is there a way to add click/scroll eventListener on DropDownList popup.When list is shown I want to listen the scroll Event and when scroll is achieve end - go and load new portion of data and show in the "selectbox". For example I added click event on kendo-popup, also on ul element in that element - but no evenets was fired? Is this possible with KendoUI?

When setting a fixed height and enabling scrolling on the Kendo Angular Grid, the grid will not fill it's entire height if too few rows are loaded (please see attached screenshot).
The grid has a fixed height of 500 pixels, however it does not fill it entirely, leaving an empty space beneath it. Also, vertical scrolling does not seem to be enabled. If more rows are loaded (or existing rows are expanded), the grid will grow in height and even exceed it's fixed height setting as if it were not set at all.
If, however, enough rows are loaded initially, vertical scrolling is enabled and works as expected.
This behaviour can be reproduced by setting a fixed height to a grid and enabling scrolling, and loading fewer records than the set page size.

Hi,
is it possible to change default starting sort direction of Grid from ASC to DESC?
Thanks,
Yuriy
Hi i have used this custom directives:
https://www.telerik.com/kendo-angular-ui/components/grid/data-operations/data-binding/automatic-operations/#toc-custom-directives
I can now make custom filter or dont know how ?
<kendo-grid-column field="probeWeight" title="{{ 'ServerTable.probeWeight' | translate }}" width="80" >
<ng-template kendoGridFilterCellTemplate
let-column="column"
let-filter="filter"
let-filterService="filterService">
<kendo-multiselect
[data]="listItems"
[valuePrimitive]="true">
</kendo-multiselect>
</ng-template>
</kendo-grid-column>
How to add this to state object and reload Grid. It is working for Kendo Filters like this:
<kendo-grid-column field="enabled" title="{{ 'ServerTable.enabled' | translate }}" filter="boolean" width="60">
<ng-template kendoGridCellTemplate let-dataItem>
<input type="checkbox" [checked]="dataItem.enabled" disabled/>
</ng-template>
</kendo-grid-column>
But do working for my filter i have to add field like [filter]="filter" or somthing :(
Thanks for help

Hi,
Is there a way to disable grouping for a particular column? The ColumnComponent has inputs for editable, filterable, reorderable, resizable and sortable but not groupable?
Thanks.

Hi,
Using kendo-angular-grid@2.0.1
When using option " <kendo-grid ... filterable="menu" " ... >" the filter icon gets incorrect position (see screenshot).
BUT ONLY in Internet Explorer. Chrome and Opera are fine.
Thanks,
Yuriy