alos when endless scrolling enabled. Do we need to implement from Backend side ? Is there any examples available to check ?
Thanks.
Hello,
We are upgrading the version of the kendo libs we are using. The tree view version went from 4.3.0 to 5.1.1. After this upgrade the tree views in our app don't update dynamically when the bound data is changed. That is when nodes are added, they are not shown.
I tried to make a plunker to demo this problem, and at first I seemed to replicate it, but then I found that including the BrowserAnimationsModule in the plunker fixed it, but we're already doing that in our app. So I don't have a MWE to show you. :-( But it still makes me think it is some kind of animation failure. No errors are logged.
I hate asking this question without being able to provide an actual example, but maybe someone will recognize the symptoms... Here are some bits of the code, it's basically for displaying and editing GridList filters
<kendo-treeview [nodes]="[filter]" kendoTreeViewHierarchyBinding childrenField="filters">
<ng-template kendoTreeViewNodeTemplate let-dataItem let-index="index">
<button kendoButton look="flat" icon="close" (click)="delete(index)"></button>
<span *ngIf="dataItem.filters != null">
<button kendoButton icon="filter-add-expression" [look]="'flat'" (click)="addFilter(dataItem)"></button>
<button kendoButton icon="filter-add-group"[look]="'flat'"(click)="addGroup(dataItem)"></button>
...
</ng-template>
</kendo-treeview>
...
public filter: CompositeFilterDescriptor;
public addFilter(dataItem: CompositeFilterDescriptor) {
dataItem.filters.push({ field: '', operator: 'eq', value: '' });
}
public addGroup(dataItem: CompositeFilterDescriptor) {
dataItem.filters.push({
logic: 'and',
filters: [{ field: '', operator: 'eq', value: '' }],
});
}
Here are the version changes we did. I also tried updating Angular from 11.0.4 to 11.2.12 without luck.
We are using Kendo Theme Default 4.37.0 for implementing dark and light theme to our Kendo charts in our project. However, a recent upgrade to some of our packages are disabling the kendo theme that we have set up.
Steps to reproduce the issue on our side is to delete the current package-lock.json file, delete node modules and then npm install.
under style.scss, we have
@import"~@progress/kendo-theme-default/dist/all.scss";
I have attached our package-lock.json file (post upgrade) for reference.
Anyone having this issue or know the cause behind it?
Hello all,
I am using kendo grid. When call a function in cell template, this function is constantly triggering for all data in the grid. It causes a problem when I want to load a lot of data in the grid.
How can i solve this ?
Thanks.
Hi!
Is it possible to set the with of the popup from toolbar!
Example: https://stackblitz.com/edit/angular-ymzuwx?file=app/app.component.ts
I'm trying to implement the basic rowClass rowCallback example shown here: https://stackblitz.com/edit/angular-yh8zyr?file=app/app.component.ts, and I noticed in my local environment the rowCallback is being called continuously. Logging out a value in the function will fill the entire console, and inspecting the element shows the class being added to the row is flashing consistently from being added over and over.
Is there any way to figure out what is causing this? I've tried to just implement the example in the link with a basic grid and hard coded array of data, but still experiencing the same issue. Any help appreciated. Thanks!
Steve
I want to achieve a menu like the Azure DevOps menu with the Drawer control (see attachment)
How can I put the toggle button at the bottom within the Drawer control? The drawer control is a fixed menu at the left side with height 100%.<
Can i do this with the footer template?
is their any possible way to exclude the first row from sorting in kendo grid apart from the new sticky row feature? ( I am looking for a solution that would work in all browsers)