All thes days the ui of it is fine as we can see in document but now the grid ui is not proper .Is there any modification/update?Tried multiple ways but still i could't resolve.Pfa any suggestion would be great.
Hey
We use grouping in our kendo angular grid. When we sort on a string like 100005-02, 100005-03, ... It sorts it like: 100005-08, 100005-09, 100005-10, 100005-100, 100005-101, ... 100005-109, 100005-11, 100005-110.
How do we fix this? Seems like it doesn't handle these sorts of cases.
Our group is like this: group: GroupDescriptor[] = [{ field: 'field', dir: 'asc' }]; And it still sorts like above.
Is there a straightforward way to render tooltip only if content was overflown?
.some-element {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
I have an app that is launching a window via the WindowService open method and I want to set the "themeColor" for the window. There is no themeColor property available in the WindowsSettings. I did try setting it via htmlAttributes, but that didn't have any effect.
Am I just missing something?
const windowRef = this.windowService.open({
title: appointment.event?.name,
content: AppointmentModalViewComponent,
width: 500,
minWidth: 450,
htmlAttributes: {
"themeColor": "primary"
}
});
HI All,
I am getting a error in kendo Multiselect. when I select any one of them in list after that currency icon is converting to hex value as you see in below picture. can you tell me how it's resolved.
Hi,
In the previous release we did not have a circle over the delete button in the kendo multi select dropdown. Here is the image.
Previous release of kendo-multiselect.
In the current release, there is a circle around the X. We have a requirement that no dark circle should be shown around the 'X'.
I tried looking at the document and even extended the service and that doesn't work. Any suggestions?
Here is my class extending the IconSettingsService . But it never hits this service.
import { Injectable } from '@angular/core';
In the latest release I see that kendo is using svg.
Hello kendo team.
Q: Is there a way in current or future versions to configure the visibility for hit (preview) element while dragging an item?
It seems that sortable has an hint: ElementRef; but no starlight forward way to configure its visibility.
Currently the following approach was used, but maybe there is a better way.
<kendo-sortable [activeItemClass]="'sortable-active-item'">
</kendo-sortable>.sortable-active-item {
display: none;
}
.sortable-active-item[kendodraggable] {
display: block;
}ps. The project is tied to the old version of kendo ( "@progress/kendo-angular-sortable": "^3.0.3") and cannot update the package now
Br
We are using remote data to create treeview, so our tree data type is
public treedata: Observable<any>;
So in search function we are getting exception
Argument of type 'Observable<any>' is not assignable to parameter of type 'any[]'.
How we apply a filter on remote async data?
According to https://www.telerik.com/kendo-angular-ui/components/editor/styling/#toc-setting-the-height I can customize the size of the editor area. Is it possible to make it fill all available space?
height: 100%;