I am using currently Angular 5 with Kendo UI
I have a "Master-Detail Grid" and I’m trying to expand/collapse all details rows.
It exist a standar funcionality for expand/collapse all details rows at the same time ? (A button in kendoGridToolbarTemplate for example)
Thanks,
I am using currently Angular 5 with Kendo UI (trial version). It is giving me error pipe is not a function in service.ts. I used contents from below URL
https://www.telerik.com/kendo-angular-ui/components/grid/data-operations/data-binding/
I’m trying to remove the grouping programmatically by
clearing the state:
this.state = { skip: 0,
take: this.state.take, filter: this.state.filter, sort: this.state.sort, group:
[]};
the data is actually being un grouped but the ui is not refreshed as in the attached screenshot.
Hi,
Is there a property or a way to implement load data on demand in Combo? (In Kendo UI for Jquery there was a property called "Virtual" to do that).
Thank you in advance.
Please see plunker below. Column chart type aggregates data as expected using the sum aggregate. Pie and Donut do not aggregate as expected.
https://plnkr.co/edit/KBkkNGsglZPqP5s89yPl?p=preview
Thanks for your help in determining if this is a bug or as expected.
Ben
Can kendo-grid do the same? I set the filterable="menu" , but that only handle the filter, I would like it to include hide column options and sorting.
https://demos.telerik.com/kendo-ui/grid/column-menu
Thanks,
Bryian Tan
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.