Telerik Forums
Kendo UI for Angular Forum
0 answers
149 views

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.

 

Jameema
Top achievements
Rank 1
 asked on 11 Jan 2021
1 answer
179 views

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

 

 

 

Martin Bechev
Telerik team
 answered on 11 Jan 2021
2 answers
77 views

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.

 

hoai
Top achievements
Rank 1
 answered on 11 Jan 2021
1 answer
110 views

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

 

 

 

 

Martin Bechev
Telerik team
 answered on 11 Jan 2021
1 answer
507 views

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

Svet
Telerik team
 answered on 08 Jan 2021
1 answer
106 views

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?

 

Martin Bechev
Telerik team
 answered on 07 Jan 2021
1 answer
198 views
I have just started with kendoUI. I need documentation or some example for reference to implement dropdown list in a grid
Dimiter Topalov
Telerik team
 answered on 07 Jan 2021
3 answers
951 views

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.

Ivan
Telerik team
 answered on 07 Jan 2021
2 answers
118 views

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.

esp
Top achievements
Rank 1
Veteran
 answered on 06 Jan 2021
2 answers
436 views

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.

Alvin
Top achievements
Rank 1
 answered on 06 Jan 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?