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?


I'm trying to figure out if it is possible to use a custom html template for displaying kendo legends. I couldn't find a way to inject a "ng-template" item inside kendo-chart-legend. I am looking for a solution similar to
<kendo-chart-series-item-tooltip>
<ng-template let-category="category" let-value="value"> {{ category | translate }} : {{ value | kendoNumber:'p2' }} </ng-template>
</kendo-chart-series-item-tooltip>
I wonder if it is possible to make it with legends as well. By the way, jQuery plugin has "legend.labels.template" but it seems that it is not for html templates.
https://stackblitz.com/edit/angular-bjwgmd?file=app/app.component.ts
The position property of the axis titles only allows positioning along its axis. Is there a way to have in the chart linked above, the axis titles appear off the chart? For instance, for the x-axis title to be positioned at the bottom of the y-axis (and vice versa)?
I'm aware of the padding property but this would require updating each time the chart is resized.
Hi,
I'm using the Drawer component as a navigation menu widget. When I try to lay out content in the kendo-drawer-content area the content is correctly rendered except when it is a layout component; then styling simply breaks. For example, grids are rendered correctly but cards, steppers, tabstrips, panelbars, etc. lose their structure/styling (see Stackblitz: https://stackblitz.com/edit/kendo-drawer-component-ehlmsd for some examples).
Am I doing something wrong or is this a bug?
Thanks in advance for your assistance.