Telerik Forums
Kendo UI for Angular Forum
1 answer
307 views

Is it possible to take slot durations from database and split them into several kind of durations in work-week-view component ?

Does this component have this kind of customize options ? 

Example is attached to the thread.

 

 

Svet
Telerik team
 answered on 22 Apr 2021
2 answers
134 views
is possible to Highlight the keyword in the suggested list when the user typing?
Chamal
Top achievements
Rank 1
Veteran
 answered on 21 Apr 2021
1 answer
572 views

Hello Team,

                    We want to display an icon in empty autocomplete field to let the users know that is data can be assigned to that field by clicking or typing on it, we know that we can achieve this by using a kendo dropdown, but we are using the autocomplete in various area's in our product, is there any way to show the icon by using CSS or in any other way, please let us know. 

 

Thanks.

Hari Padala

Yanmario
Telerik team
 answered on 21 Apr 2021
1 answer
358 views

I have an Angular kendo chart, where I use the "[plotBands]" attribute, in order to have some part of my chart in another color. You can see it in the attached image.
If periods are highlighted (past/current periods), then after zoom, the chart component uses the original indexes and highlights the wrong periods.
picture chart1. (no zoom) : current period is 03-2020 (third period

After zoom, I have this image
picture chart2. With zoom: current becomes 07-2020 (the third one according to indexes).

 

 

So how can I show the real selected (03-2020 third period) part and hide it after zoom?
I have tested and found that it does not work only with the "kendo-chart-category-axis".
When I set "plotbands" to "kendo-chart-value-axis" and then zoom the chart, then it worked as expected<stdytrp-widget-1618841306601 style="all: unset; position:absolute !important;top:0 !important;left:0 !important;"></stdytrp-widget-1618841306601>

Yanmario
Telerik team
 answered on 21 Apr 2021
1 answer
402 views

Hello,

 

Is there a way to have a SplitButton to perform action on the clicked row in the Grid?

I can only see that I have an option to specify a data property with the dropdown items. Is there a way to pass the dataItem to the split button?

for example:

 

<kendo-grid>

<kendo-grid-column>

<ng-template kendoGridCellTemplate let-dataItem>

<kendo-splitbutton>

<ng-template kendoListButtonItem let-buttonDataItem>

{{dataItem.id}}

</ng-template>

</kendo-splitbutton>

</ng-template>

</kendo-grid-column>

</kendo-grid>

Martin Bechev
Telerik team
 answered on 21 Apr 2021
1 answer
970 views

Hi, 

Is it possible to show the popup of the dateTime picker centered on the screen?

There is an issue on small screens, that the Cancel and Set Buttons are not reachable (scrolling is not an option in our use-case).

It can be reproduced easily here:

https://stackblitz.com/edit/angular-datepicker-popup-settings?file=app/app.component.ts

Just enable mobile mode in chome dev tools.

Thanks,

Florian

Martin Bechev
Telerik team
 answered on 20 Apr 2021
2 answers
200 views

Hi!
Take a look at this stackblitz example: https://stackblitz.com/edit/angular-o2pliu?file=src/app/app.component.html

Scroll down through the wall of "test" paragraphs, and take a look at the appbar/combobox. Combobox (and every other Kendo component) floats on top of the appbar.
I know my example is clunky, but it shows this bug pretty well.
I also know that .css styles are excessive, but I just copied my code from my local project.

 

Is this really a bug, or is it my fault?

Jakub
Top achievements
Rank 1
 answered on 19 Apr 2021
7 answers
505 views

Hi,

I have noticed that the recurrence component does not allow me to select some options. 
As for example the options to end a daily recurrence, it is the same with the other types of recurrence.

For more information I am using template driven form.
My Angular module has imported these kendo modules.

GridModule
SchedulerModule
DropDownsModule
DateInputsModule
TreeViewModule
TooltipModule
IntlModule

Package versions

Angular: 9.1.12
Bootstrap: 4.5.2
@progress/jszip-esm: 1.0.1
@progress/kendo-angular-buttons: 5.5.1
@progress/kendo-angular-common: 1.2.3
@progress/kendo-angular-dateinputs: 4.3.1
@progress/kendo-angular-dialog: 4.2.2
@progress/kendo-angular-dropdowns: 4.3.1
@progress/kendo-angular-excel-export: 3.1.4
@progress/kendo-angular-grid: 4.7.3
@progress/kendo-angular-inputs: 6.6.1
@progress/kendo-angular-intl: 2.0.3
@progress/kendo-angular-l10n: 2.0.2
@progress/kendo-angular-pdf-export: 2.0.4
@progress/kendo-angular-popup: 3.0.6
@progress/kendo-angular-scheduler: 1.2.1
@progress/kendo-angular-tooltip: 2.1.5
@progress/kendo-angular-treeview: 4.3.0
@progress/kendo-common: 0.2.1
@progress/kendo-data-query: 1.5.4
@progress/kendo-date-math: 1.5.1
@progress/kendo-drawing: 1.9.1
@progress/kendo-file-saver: 1.0.6
@progress/kendo-popup-common: 1.7.0
@progress/kendo-recurrence: 1.0.1
@progress/kendo-schematics: 1.1.0
@progress/kendo-theme-bootstrap: 4.18.0
@progress/pako-esm: 1.0.1 

Svet
Telerik team
 answered on 16 Apr 2021
4 answers
1.1K+ views

Hello 

I apply keyboard navigation from below url to control the Tab key. 
https://www.telerik.com/kendo-angular-ui/components/grid/keyboard-navigation/

In my grid, there is a column with kendo-dropdownlist as kendoGridEditTemplate. 
Usually we can open dropdown-list by press Enter key or Alt+Down Arrow key. 
But within the grid in cell editing, these key press do not open the dropdown. 
Is there any easy way to open dropdown with keyboard in grid?

The requirement is the user need to fill up the grid editing with keyboard only without mouse click. 
Is there any keyboard shortcut key for Add New row in grid?

Zaw
Top achievements
Rank 1
Veteran
 answered on 16 Apr 2021
2 answers
142 views

According to https://www.telerik.com/kendo-angular-ui/components/styling/ we should be only importing the scss that is required by the components we use. For instance:

// Import only the PanelBar and Grid styles.
@import "~@progress/kendo-theme-default/scss/panelbar/_index.scss";
@import "~@progress/kendo-theme-default/scss/grid/_index.scss";

 

How do we know which styles are used by which components? If we have imported the charts module for instance, which styles would need to be imported?

esp
Top achievements
Rank 1
Veteran
 answered on 16 Apr 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?