I am using Kendo UI timeline view for scheduling events in a day.
I want to provide a feature where user can clone (create a copy of) existing events and edit them as required in order to minimize their work.
I found this concept in jQuery where they are cloning events using keyboard shortcuts(https://docs.telerik.com/kendo-ui/knowledge-base/clone-events-on-ctrl-and-click) but there is no way available to do the same in Angular.
Kindly help in achieving this feature as I am new to Telerik UI.
My treeview is defined as follows:
<kendo-treeview
#treeView
kendoTreeViewExpandable
kendoTreeViewSelectable
(selectionChange)="edit($event)"
[(expandedKeys)]="expandedKeys"
textField="text"
[filter]="filterTerm"
[nodes]="keyValues$ | async"
[children]="fetchChildren"
[hasChildren]="hasChildren"
>
As the screen is opened I set the expandedKeys so that some of my nodes are by default opened, and the data is automatically loaded in.
However certain nodes have children which I would also like to load when their parent is opened, and to further complicate the matter, a different call to the server is required than the one defined in fetchChildren for fetching this data.
Is there any way I can independently load this data, not using fetchChildren and then programmatically insert it into the tree? It seems as though there isn't a way to perform a hybrid approach to data loading...
Hi together,
On my local environment my license activation works well - I use the license key file there. But during deployment, I have a problem with the license activation - I need it because I call ng build there. I use an environment variable there.
This is how I do the license activation during deployment with Azure DevOps and YAML script:
- task: Npm@1
displayName: Install Packages for Angular Client
inputs:
command: ci
workingDir: '<my working dir>'
- script: 'npx kendo-ui-license activate'
displayName: Activate Kendo UI License
workingDirectory: '<my working dir>'
env:
KENDO_UI_LICENSE: $(KENDO_UI_LICENSE)
- task: Npm@1
displayName: Build Angular Client
inputs:
command: custom
workingDir: '<my working dir>'
customCommand: 'run build'
Everything works well except the "Activate Kendo UI License" script, there I get the error "License key signature is not valid". I think there is a problem with the environment variable.
Here is the output of the DevOps Pipeline console:
For 'npm ci':
> @progress/kendo-licensing@1.2.2 postinstall D:\agent\_work\1\s\DSO.Isys.Web.Client\IsysApp\node_modules\@progress\kendo-licensing
(INFO) Kendo UI: KENDO_UI_LICENSE environment variable not set
For 'npx kendo-ui-license activate':
Skriptinhalte:
What am I doing wrong here?
Thanks for your help,
Katharina
I am using a donut chart and have data with wide varying data values. This means that some of the individual segments can be very small. I would like to display the value next to each label e.g. Active [890], Backlog [2156], Rejected [2].
I need this for both labels around the chart or in the Legend on charts where I only display the legend.
Attached chart shows an example of my chart. The yellow highlights are where I'd like the data value to appear.
Thanks
I have a button "Show" on my website and when I click on it, an alert appears, and there is an "OK" button on that alert. I have to click on it to close the alert and finish my test case, I need to make a period before I click the OK button, please help.
Sorry for my English.
Thank you.
I have been trying to create something in the style below. But the event never seems to fire when I select a date. Help ?
// updateOn: 'change'
Hi
I am using angular 13.
My page contains a button "New Application"
I press a button to open the window "Search for applicant"
the window is open , it contains another buttton with label "continue"
I press the "coninue" button to open the action sheet. the action sheet is open at the back and attached to the parent page not to the window.
here is the HTML
<kendo-window
title="Search For Applicant"
*ngIf="opened"
(close)="close()"
[minWidth]="800"
[width]="1200"
[height]="650"
>
<dhaman-entities></dhaman-entities>
<kendo-dialog-actions>
<button id="openActionSheetBttn" kendoButton (click)="Start()" themeColor="primary">
Continue..
</button>
</kendo-dialog-actions>
</kendo-window>
<kendo-actionsheet
*ngIf="openActionSheet"
(itemClick)="acOnItemClick()"
(overlayClick)="acOnOverlayClick()"
[title]="title"
[items]="items"
>
</kendo-actionsheet>
public openActionSheet = false;
public title = 'Select item';
public items: ActionSheetItem[] = [
{
title: 'Edit Item',
iconClass: 'k-icon k-i-edit',
},
{
title: 'Add to Favorites',
iconClass: 'k-icon k-i-heart',
},
];
.k-actionsheet-container {
width: 100%;
height: 100%;
z-index: 1;
}
.k-actionsheet-container > .k-overlay {
border-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
}