Hello,
When updating to the latest version of kendo-licensing the license isn't applied anymore via our pipeline/site.
The step in our azure devops pipeline gives the message that the license is found but if we start our application the message comes that the license needs to be activated/watermark applied.
With version 1.5.1 we don't have any issues. There the license is applied correctly.
Devops step:
Step with 1.5.2 (doesn't apply the license)
Starting: Activate Kendo UI License
==============================================================================
Task : Command line
Description : Run a command line script using Bash on Linux and macOS and cmd.exe on Windows
Version : 2.250.1
Author : Microsoft Corporation
Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/command-line
==============================================================================
Generating script.
Script contents: shell
call npx kendo-ui-license activate
========================== Starting Command Output ===========================
"C:\Windows\system32\cmd.exe" /D /E:ON /V:OFF /S /C "CALL "C:\agent\_work\_temp\f68efdff-b07b-4c99-8e1f-f36fc1d33941.cmd""
[INFO][Telerik and Kendo UI Licensing] Telerik and Kendo UI License Key found at: KENDO_UI_LICENSE
License issued at 7/2/2024 11:45:22 to ******
Finishing: Activate Kendo UI License
Step with v1.5.1 (does apply the license).
Starting: Activate Kendo UI LicenseAfter upgrading to angular 19 and kendo angular grid to version 17. it's throwing this error.
can't find this service in kendoAngular 17 version "PagerContextService!" Checkbox is also not showing in grid.
No provider for PagerContextService!
Hi,
My npm upgrade command fails with some errors when I try to upgrade kendo-angular from 16.8 to 17.0.
my packages:
"@progress/kendo-angular-buttons": "17.0.0", "@progress/kendo-angular-charts": "17.0.0", "@progress/kendo-angular-common": "17.0.0", "@progress/kendo-angular-dateinputs": "17.0.0", "@progress/kendo-angular-dialog": "17.0.0", "@progress/kendo-angular-dropdowns": "17.0.0", "@progress/kendo-angular-editor": "17.0.0", "@progress/kendo-angular-excel-export": "17.0.0", "@progress/kendo-angular-gauges": "17.0.0", "@progress/kendo-angular-grid": "17.0.0", "@progress/kendo-angular-inputs": "17.0.0", "@progress/kendo-angular-intl": "17.0.0", "@progress/kendo-angular-l10n": "17.0.0", "@progress/kendo-angular-label": "17.0.0", "@progress/kendo-angular-layout": "17.0.0", "@progress/kendo-angular-menu": "17.0.0", "@progress/kendo-angular-pager": "17.0.0", "@progress/kendo-angular-pdf-export": "17.0.0", "@progress/kendo-angular-popup": "17.0.0", "@progress/kendo-angular-progressbar": "17.0.0", "@progress/kendo-angular-scheduler": "17.0.0", "@progress/kendo-angular-scrollview": "17.0.0", "@progress/kendo-angular-sortable": "17.0.0", "@progress/kendo-angular-toolbar": "17.0.0", "@progress/kendo-angular-treelist": "17.0.0", "@progress/kendo-angular-treeview": "17.0.0", "@progress/kendo-angular-upload": "17.0.0", "@progress/kendo-data-query": "1.7.0", "@progress/kendo-date-math": "1.5.13", "@progress/kendo-drawing": "1.21.0", "@progress/kendo-font-icons": "3.0.0", "@progress/kendo-licensing": "1.3.5", "@progress/kendo-recurrence": "1.0.3", "@progress/kendo-theme-default": "8.0.1"
Could not resolve dependency:
@progress/kendo-angular-buttons@"17.0.0" from the root project
Conflicting peer dependency: @progress/kendo-angular-l10n@17.0.0
node_modules/@progress/kendo-angular-l10n
peer @progress/kendo-angular-l10n@"17.0.0" from @progress/kendo-angular-buttons@17.0.0
node_modules/@progress/kendo-angular-buttons
@progress/kendo-angular-buttons@"17.0.0" from the root project
what can be the problem? I checked the dependencies of each package, I can't find any problem. All dependencies look okay to me.
Similarly, if I try to upgrade all packages to latest version via 'npx npm-check-updates --upgrade --filter "/@progress.*/"', still I am getting an error.
npm ERR! Conflicting peer dependency: @progress/kendo-angular-l10n@18.1.0
Hello,
we are updating an angular application from angular 16 ant Kendo UI 14
All the update worked fine and actually we are in angular 18 and Kendo UI 16
Now if I try to update KendoUI to version 18.1.0 (the lastone) all telerik controller became "unknown".
I have tried clear the node_modules folder, clear angular cache, restarted visual studio code...but never.
Now we are back to Angular 18/Kendo UI 16.
Thanks for any helps or idea
Maurizio
I currently convert all my Kendo themes (linked to my custom theme in my application) to use the new Design system.
I got 2 scss files by theme. ex: pink theme in dark and in light. Then a service switches the generated css file at runtime to reflex the theme user selected.
So I try to change one of them with the new way to compile Kendo themes like:
@use 'sass:map';
@use '@progress/kendo-theme-default/scss/index.scss' as *;
$kendo-colors: map.merge(
$kendo-colors,
(
app-surface: #1e293b,
on-app-surface: #ffffff,
)
);
// Use the 'k-generate-color-variations' function to generate
// all shades of the 'primary', 'secondary' and the 'base' color.
$kendo-colors: map.merge($kendo-colors, k-generate-color-variations('primary', #818cf8, 'default'));
$kendo-colors: map.merge($kendo-colors, k-generate-color-variations('secondary', #475569, 'default'));
@include kendo-theme--styles();
That works great, but all background (grid, textbox... ) are for light themes (background white). With the old system, we can add:
$theme-type: dark
But tha do not work anymore.
So how to create a theme with the same primary and seconfady color, but in a light and dark theme.
Thanks,
Hello,
I am trying to use virtual scroll in a drag and drop UX flow where a user drags a label element from one grid over to another grid. However, we recently ran into performance issues on the grid that holds all the drag target labels due to a large number of records in the data bound to that grid. We want to use virtual scroll to solve the performance issue on the grid because pagination does not work as well for our use-case.
Unfortunately, adding scrollable='virtual' to the grid appears to add some position attribute to the grid that breaks the drag and drop functionality. The x and y coordinates passed in the DragTargetDragStartEvent do not match the coordinates of the cursor in the window and the drag target is now bound by its container. I haven't been able to determine a workaround that doesn't include manual DOM manipulation, which I'd like to avoid.
I also noticed that this issue is a known limitation in the jquery documentation: https://docs.telerik.com/kendo-ui/controls/grid/scrolling/virtual-scrolling#known-limitations
Are there any templates available for this use-case of virtual scroll and drag and drop utility on a kendo grid, or is this combination not supported?
Thank you in advance for any assistance
Hi,
We are using kendo UI for angular in our project. The angular version is 18. We are upgrading bootstrap from version 3.x to five point 5.3.3.
When we did an ng build it failed with the following error.
"cannot resolve type entity i25.IconsModule error"
Regards,
Jyothi