Hello!
While understanding the Sortable component, I went across the following issue:
- I opened the example from https://www.telerik.com/kendo-angular-ui/components/sortable/ in StackBlitz
- I added a button that when clicked, should add a new Item (image-one)
- I clicked the button
- Item array was updated, but interface is not showing the new item (image-two)
Is there another way to refresh the interface, to see the items up to date?
Thank you!
Hello,
We have a requirement to implement drag and drop in TreeList component. Drag and drop should be possible within nodes(any level) and outside the component as well.
I cannot see any mention of such feature in the documentation. Is it present already or under development? When can this feature be expected?
Thanks,
Harmeet
hi,
I'm using Kendo UI for Angular Multi select. When I type in the input(inside multi select) the text is not visible but filtering works fine.
This functionality works fine in Chrome but doesnt work in IE11.
Please suggest.
Good morning, I would like to understand if it is possible to apply a template to modify the category text. I would like for each category of the datasource to be called either a pipe or my function to modify the text. For example if I have the numbers of the months I would like to call a function that returns me the name of this. it's possible to do it? or the only solution is to change the datasource to the backend?
<
kendo-chart
>
<
kendo-chart-title
text
=
"Report"
></
kendo-chart-title
>
<
kendo-chart-category-axis
>
<
kendo-chart-category-axis-item
[categories]="month"
[title]="{ text: 'Months' }">
<
ng-template
let-value
=
"value"
let-category
=
"month"
>
<
span
> {{convertMonth(value)}}</
span
>
</
ng-template
>
</
kendo-chart-category-axis-item
>
</
kendo-chart-category-axis
>
</
kendo-chart
>
regards,
Alex
As my experience
The kendo grid for Jquery , we can get the setting of column menu via this code
var grid = $(name).data("kendoGrid");
var columns = grid.columns;
var setting = [];
columns.forEach(function (x, index) {
if (typeof x.menu === 'undefined' || x.menu) {
setting.push({
hidden: x.hidden
});
}
});
with that code we can define what column is hidden or not.
So how about kendo grid for angular,
Is there anyway to get column setting option?
Thanks.
how can i display month names without converting each month number via a function
this is my kendo grid with month column:
<
kendo-grid-column
field
=
"month"
>
<
ng-template
kendoGridCellTemplate
let-dataItem
=
"dataItem"
>
<
span
>{{convertMonthNToName(dataItem)}}</
span
>
</
ng-template
>
</
kendo-grid-column
>
the function convertMonthNToName contains a switch that returns a string month name
Is there anything kendo preset that does this? via a parse or via culture libraries
Hello,
We are using Kendo UI for Angular - Mainly the Kendo editor and the grid.
Would like to know about internationalization support for the kendo modules?
Is both ngx-translate and angular i18n supported in Kendo?
Thanks,
Sujish
Hi,
I am using the notification in my footer section. With animation (fade or Slide) the animation append with an empty notification windows (so with 4-5px height) then when animation complete, the notification display the correct content. Same behaviours on FadeIn or FadeOut
I try with plain string in the content and with a test ngTemplate without any binding. Just plain text like in your sample.
Any idea?