I have an error when grid component is set a context menu. Took the grid-context-menu.component.ts code and pasted as is from tutorial, but it errors out in that file while setting cellclick input for #grid. Please find the attached image for error.
To build a context menu for grid, I was following the implementation at https://www.telerik.com/kendo-angular-ui/components/grid/advanced-features/context-menu
my gridcomponent:
<kendo-grid #grid
[data]="gridView"
(cellClick)="cellClickHandler($event)"
(cellClose)="cellCloseHandler($event)">
<grid-context-menu [for]="grid" [menuItems]="contextmenuItems" (select)="onContextMenuClick($event)">
</grid-context-menu>
Error part: grid-context-menu.component.ts
@Input() public set for(grid: GridComponent) {
this.unsubscribe();
this.cellClickSubscription = grid.cellClick.subscribe(this.onCellClick);
}
Note: Even my grid component is named 'GridComponent' same as the one in gridModule. Thought that would be an issue and tested by renaming it. But found thats not an issue.
We are using the version for Angular.
And in the kendo-upload component I would like to hide the "Cancel" and "Upload" buttons, I will do this with another button through the "uploadFiles" method.
I am using other components like this on other parts of the screen, but would like to hide only on a particular component.
Thank you.
I can't get sorting to work on a column that is selected as grouped.
https://plnkr.co/edit/j1FbSEGW3HLJDhbdHr2S?p=preview
On this grid, the group is defined on the column 'UnitPrice'.
Sorting on ProductName works, i.e. within each UnitPrice group (e.g. UnitPrice: 22, product id = 4 and 7 get sorted OK depending on asc/desc ProductName)
But Sorting on UnitPrice does not work, i.e. I expect to see the group header to show highest UnitPrice (e.g. Unit Price: 25) for descending order as first group header of the grid.
Is that feasible? Thanks!
Hi,
We are starting to redesign our webpage ui using kendo ui. Can we get the psd files of the UI set for the designer, to can work with in photoshop on the mockups?
Thanks
Hi Team,
Is it possible to create 4 level hierarchical Kendo UI grid on angular? if yes can you please share the sample.
T1--> T2-->T3-->T4 --> T5
T1- Main Gird
T2- First child grid
T3- Second Child gird (T2 is parent for T3)
T4 - Third level child grid (T3 is parent for T4)
T5 - Fourth level child grid (T4 is parent for T5)
Thanks,
Sankar
Hello,
can I use <kendo-chart-navigator> for a other chart than stock-chart? For a line-chart?
<
kendo-chart-navigator
></
kendo-chart-navigator
>
I am trying but without a result.
Thank you in advance.
Hello,
Is it possible to change default tooltip of calendar cells to something custom?
Thanks in advance
I was somehow able to find support for creating a drag and create event from telerik itself. But the issue I found was that the scheduler didn't had grouping of resources so it worked fine.
My application involves grouping of resources like rooms. Though it doesn't show any error while dragging and adding events, the events do not show up in the scheduler and after that if we click on other rooms for adding event my restriction starts to show "The Room Is Already Booked".
Is there a way around it ?
Thanks