Hi ,
I need to remove an event when the user removes it by clicking on the X link which appears when he hovers over it. Currently what happens is this:
- the removeEvent is triggered right away
- then the confirmation dialog appears
But I need to add my code only after the Yes button is clicked on that dialog. Is there an event for that?
I also tried to use my own dialog, so I prevent the default behavior of the remove event, but in this case the widget does not remove the event. So I would like to know how to do it programmatically. Thanks.
Regards,
Anton
ERROR Error: Uncaught (in promise): NullInjectorError: R3InjectorError(Standalone[ReportsComponent])[MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent]:
NullInjectorError: No provider for MultiViewCalendarComponent!
NullInjectorError: R3InjectorError(Standalone[ReportsComponent])[MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent -> MultiViewCalendarComponent]:
NullInjectorError: No provider for MultiViewCalendarComponent!
Hello,
We're very excited to see the new Angular Spreadsheet component, and would love to switch over from the jQuery one as soon as possible!
However, I noticed one thing missing from the API that we're using with the jQuery version - support for custom toolbar actions.
Is there any way to achieve this in the current version? And if not, are there plans to add this functionality in a future release?
In our application we are using angular 14 and the kendo control tree-list , our requirement is to hide the parent node(Root container, unsedContainer) as you can see in the attached image. We want to display the child node only. Is there is any way out or property by which we can hide the root node.
The code sample and data is below
<kendo-treelist
class="kendo-treelist"
[kendoTreeListFlatBinding]="data"
#directive="kendoTreeListFlatBinding"
parentIdField="wrkdocParentoid"
idField="wrkdocOid"
kendoTreeListExpandable
kendoTreeListSelectable
[height]="1200"
[rowReorderable]="true"
(cellClick)="onCellClick($event)"
>
<kendo-treelist-rowreorder-column
[width]="25"
>
</kendo-treelist-rowreorder-column>
<kendo-treelist-column
[expandable]="true"
title="Name"
[width]="250"
>
<ng-template
kendoTreeListCellTemplate let-dataItem let-rowIndex="rowIndex"
>
<span class="k-icon k-i-folder" *ngIf="isFolder(dataItem)"></span>
<span> {{ getTemplateName(dataItem) }}</span>
</ng-template>
</kendo-treelist-column>
<kendo-treelist-column
field="wrkdocUdid"
title="ID"
[width]="140"
></kendo-treelist-column>
</kendo-treelist>
DATA set:
mockData: any[] = [I have a scenario, where I have to filter the grid based on a Boolean column.
for ex: "isMember" is a boolean field with "yes" or "No" values
The user can filter records with :
"yes":- to see only member records,[checked= true]
"No":- to see non-member records[checked = fslse]
and "both yes and No":- to see all records[checked=null]
The Prime-ng has a p-triStateCheckbox component to implement this scenario.
Do we have something similar in kendo to implement this scenario?
Hello,
How can we use dropdown buttons to show export to excel and export to pdf options in grid's header? I'm not able to visualize how to use kendoGridExcelCommand and kendoGridPdfCommand in dropdown button.
Hello,
I have a multi-week view scheduler, in which i use the kendo kendoSchedulerGroupHeaderTemplate
directive to style my groups according to some resources.
I want to impose a max-width on this, in order to make sure that the names of the groups are within proportion. (See example: Too-long.png)
I have my html code:
<ng-template kendoSchedulerGroupHeaderTemplate let-resource="resource">
<div class="group-header-wrapper">
<div class="group-header-main">{{ resource.text }}</div>
<div class="group-header-alt">{{ resource.line }}</div>
</div>
</ng-template>
and my css:
.group-header-wrapper {
//code
}
.group-header-main {
width: 100%;
text-align: left;
background-color: $secondary-color;
padding: 2px 4px;
}
.group-header-alt {
width: 100%;
text-align: left;
color: white;
padding: 2px 4px;
}
adding max-width to group-header-wrapper. doesn't fix this. Because the event become unaligned. (see example: unaligned.png)
How can I style this so the events are aligned with their respective slots and days?
Thanks,
Govert Jaap
HI,
I am using the Kendo grid tooltip with angular 4 as is this example
https://stackblitz.com/edit/angular-3yujdm-eqvgqg?file=app/app.component.ts
When I have a long tooltip in my title is it possible to add a line break without using ng-template?
Thanks
hi!
I have in plan to implement material v3 styles in my angular application. I saw on your forum that you have this task in your roadmap. Is it possible to know about the release date?
Thanks