Hi, any one know how to dynamically re-position the Kendo-window in Angular 6?
When I move the Kendo-window it goes below the navigation bar. I would like to prevent that.
Regards.
Hi Team,
Need close icon on each tab, when clicking on close icon need to close the current tab...
Thanks in advance..
Regards
Akarsh kp
So, I've faced with issue in my project where a users can't select date on filter menu in grid component on mobile device.
My code has the same peace of code from https://www.telerik.com/kendo-angular-ui/components/grid/filtering/reusable-filter/ -> 'Filter Menu with Popup' section.
The StackBlitz has the same failure behavior.
Based on my investigation, I've figured out that kendo can't apply focus on date input after selecting date on calendar popup on mobile devices.
Hello Team,
In Kendo Grid, when using inline editing on row click, is there any way to change the border style when we focused on a particular cell. Can you get back with me any examples i can use?
Thanks,
Hari Padala
Hello,
I am experiencing an issue when applying a filter operator on a Kendo Grid (inline filtering).
This issue only occurs when the filter operator on a column is first changed. Subsequent changes work as expected.
On a Kendo Grid having at least one column of type string, with a default filter operator of, for example "eq" set, if I select a different operator and type a value in the filter cell, the GridComponent.filterChange event fires with the correct value, but the initial operator of "eq". Subsequent changes of the operator work as expected.
If instead I type in a value for the filter first, then select a different operator, it works as expected on the first try.
How may I obtain a filterChange event when first selecting a different filter operator, without necessarily typing something into the filter cell first?
Scenario:
I have 2 dropdownlist, one dropdown, have selected one item and with 2nd dropdown valueChange event trying to reset by doing empty of 1st dropdown data aray but dropdown placeholder not getting removed.
Code Sample:
1st Dropdown
-------------------------------
<kendo-dropdownlist id="ddlf49979b5b8bab429c3fa" name="ddlf49979b5b8bab429c3fa" valuePrimitive="true" [(ngModel)]="one" #ddlf49979b5b8bab429c3fa="ngModel" (valueChange)="ddlOneChange($event)" [data]="ddr_source_ddlf49979b5b8bab429c3fa" [defaultItem]="ddlf49979b5b8bab429c3fa_defaultItem" textField="text" valueField="value"></kendo-dropdownlist>
2nd Dropdown
----------------------------
<kendo-dropdownlist id="ddlf49979b5b8bab429c3fb" name="ddlf49979b5b8bab429c3fb" valuePrimitive="true" [(ngModel)]="two" #ddlf49979b5b8bab429c3fb="ngModel" (valueChange)="ddlTwoChange($event)" [data]="ddr_source_ddlf49979b5b8bab429c3fb" [defaultItem]="ddlf49979b5b8bab429c3fb_defaultItem" textField="text" valueField="value"></kendo-dropdownlist>
TS:
-------------------------
public ddr_source_ddlf49979b5b8bab429c3fa = [
{ text: "GL", value: "GL" },
{ text: "AH", value: "AH" },
{ text: "CP", value: "CP" },
];
public ddlf49979b5b8bab429c3fa_defaultItem = { text: "Select", value: null };
public ddlf49979b5b8bab429c3fb = [
{ text: "CN", value: "CN" },
{ text: "GL", value: "GL" },
];
public ddlf49979b5b8bab429c3fb_defaultItem = { text: "Select", value: null };
//Change event for reset 1st dropdownlist
ddlTwoChange(e) {
this.ddr_source_ddlf49979b5b8bab429c3fa=[];
}
Thanks,
Sushant
Hi
I have an Angular Kendo Grid.
I have to drag a row (or even a cell) to another div somewhere in the page.
That div should be able to get the drop event + data item and do something with that row data.
I saw options like ng-template, etc. Nothing which really respond my request.
I'll appreciate any help !!!
Thanks.