I have a one of legacy applications with AngularJS + KendoUI.
I have a grid when I have defined filter like that:
"filterTemplates": {
"commonInput": function (args) {
args.element.css("width", "90%").addClass("k-textbox").keyup(function (e) {
e.preventDefault();
if (e.target.value.length >= 3) {
setTimeout(function () {
$(e.target).delay(1000).trigger("change");
}, 500);
}
});
},
//. other filters like datetime, etc...,never mind in this example
}
and two columns:
{
"title": "Name",
"field": "UserName",
"width": "9%",
"encoded": true,
"filterable": {
"cell": {
"showOperators": false,
"operator": "contains",
"template": vm.gridPreInitConfig.filterTemplates.commonInput
}
}
},
{
"title": "Surname",
"field": "UserSurname",
"width": "9%",
"encoded": true,
"filterable": {
"cell": {
"showOperators": false,
"operator": "contains",
"template": vm.gridPreInitConfig.filterTemplates.commonInput
}
}
}
And now:
If I set a value in textbox filter in Name column the grid processing and is filtered perfectly, after a while.
But if I set a value in textbox filter in Surname column the grid processing and not filtered.
Please, help. Why the second column with the same filter doesn't work?
I tried also duplicate the filter in other name, but still doesn't work.
Kindly find the attachment, am not able to load the reservations on scheduler since am getting this error.
My array has image key which is not null.
Kindly help with these two issues.
How to get Start and End datetime of the view.?
For Example: In week view how to get Start(Sunday -- DateTime) and End Saturday--DateTime.
Thanks and Regards
Anto
Hello All,
<kendo-grid #grid [data]="data" [height]="height - 210" scrollable="virtual" [rowHeight]="36" [pageSize]="state.take"
[skip]="state.skip" [sort]="state.sort" [sortable]="{ allowUnsort: true, mode: 'multiple' }" [resizable]="true"
[reorderable]="true" (columnReorder)="onReorder($event)" (keydown)="onKeydown($event)"
[columnMenu]="{filter: true, sort: false}" (columnResize)="onResize($event)" (pageChange)="pageChange($event)"
(sortChange)="sortChange($event)" (columnVisibilityChange)="onVisibilityChange($event)" [filter]="filters"
filterable="menu" (filterChange)="filterChange($event)">
<keno-grid>
My requirement is to show column menu icon on one column and filter menu icon on other column, but both columns are showing column menu icon and filter menu going inside column menu pop up. How can I show filter icon on column header when column menu is set to true.
Best Regards,
Azher Ahmed
I see the JQuery version has the capabilities for controlling how content is pasted into the editor which is a very critical feature IMO.
https://docs.telerik.com/kendo-ui/controls/editors/editor/pasting
I was wondering where this was on the road map for the Angular implementation? This is really the only thing holding me back from using it versus other options available.
Thanks.
Hello, I've been trying to implement the excel export function on a mobile app, however the .xlsx file does not generate; I don't get any errors when the procedure is done.
I'm just wondering if this is not supported for mobile devices or if there is an extra step for this to work?
Hi,
Is there any event to trigger on change of view. since i have to create appointment horizontally in day view and similar manner In timeline view it has to be in vertical view.
Thanks and Regards
Anto
Hi there
We are a small startup and like Kendo UI for Angular8 Datagrid very much. We downloaded a free trial to make sure it;s working before buying a license.
https://www.telerik.com/kendo-angular-ui/components/grid/how-to/filter-all-columns/
We asked a contractor to integrate the component and he did integrate the data-grid and it looks good. But our memory requirement went from 2G to 4G and he asked us do following:
EXPORT NODE_OPTIONS=--max_old_space_size=4096
This is not good as we want our application to be light weight. We are almost (sadly) thinking of dropping this and looking for alternative data-grid products.
Could you please suggest if Kendo's angular8 has this memory expectation or we are doing something wrong?
Thank you so much
Angel