we need the copy and paste feature in grid
copy the data form one row and then create the new row , paste the data in row
I know you can use kendoSchedulerTimeSlotTemplate like below, but this will apply text to all slots, and it doesn't have any access to the resource/grouping information, only date information is available?
<ng-template kendoSchedulerAllDaySlotTemplate let-date="date">
<strong>{{ date | kendoDate }}</strong>
</ng-template>
Is it possible set slot text on specific slot only like attached image?
Hi ,
Thanks for your rsponse of my query .
As of now ,We are using many of the kendo grid features like sorting,filtering,searching,paging,show hide menus with Kendo grid .At present ,our team is using the Kendo trail version and plan to buying the kendo licene shortly.
I need a quick help for my below queries.
1) As of now ,I am trying to paste my records from one column to another column in kendo grid by using Angular.
At present ,this feature is available in JQuery but not in Angular.I am looking for the same feature from Angular
with in the KendoGrid.Kindly share me the estimated arrival date if your team is working on it .
Find the reference below for the JQuery.
https://docs.telerik.com/kendo-ui/knowledge-base/grid-copy-columns-from-excel-paste-on-selected-columns
2) The other way is to use the Kendo UI widgets for jQuery together with Kendo UI components for Angular in Angular projects, include only components that have no counterpart in the Angular suite.If I follow this approach do i need to change the existing code otherwise it supports backward compatiablity with Angular.For your reference ,find the URL below for this approach.
https://www.telerik.com/kendo-angular-ui/components/framework/kendo-jquery/
3) Third approach is customise the paste event inside the grid by using context menu options .
Inwhich ,I can go use the cell click event on paste in to the grid.This case only one cell copy is possible .So,suggest me how to copy and paste multiple cell values over the Kendogrid.
Please share your answers and ETA as our team is in the development mode now .
Thanks and Regards,
Kamaraj.P
Hi,
I would like to customise a kendo grid column and reuse it across my application (basically avoiding to repeat some codes related to that column). The following is a very basic example. Let's say I want a customised string grid column. So, I create the component below:
01.
@Component
({
02.
selector
:
'kendo-grid-string-column'
,
03.
template
: `<kendo-grid-column [field]=
"field"
[title]=
"title"
>
04.
</kendo-grid-column>
`,
05.
})
06.
export
class
KendoGridStringColumnComponent {
07.
@Input
()
08.
public
field
: string;
09.
10.
@Input
()
11.
public
title
: string;
12.
13.
constructor
() {
14.
15.
}
16.
}
Now, I use my component in the grid as follows, but neither that (first) column appears nor I get an error in the console!
1.
<
kendo-grid
[data]="data">
2.
<
kendo-grid-string-column
field
=
"name"
title
=
"Name"
>
3.
</
kendo-grid-string-column
>
4.
<
kendo-grid-column
field
=
"lastName"
title
=
"Last Name"
>
5.
</
kendo-grid-column
>
6.
</
kendo-grid
>
Any help is appreciated.
Mojtaba
Hi All,
I would like to get support while implementing Control Chart + Range Slider. Please have a look to details below:
What I have so far:
- Kendo Chart Line with a Max/Min value in both axis is working fine.
- Range Slider is working fine.
What is not working:
- Not able control (min/max values) chart when user modify the range criteria on Range Slider.
What I need:
- Set Chart Zoom In & Out values, based on on Range Slider output.
Have attachment as a reference.
Thanks for your help.
Oskar
Hello Kendo UI Team,
The context menu for Kendo grid rows and columns is not working on the iPhone with the following configuration:
device: iPhone
Tested iOS version: 13.2.2 and 14.1
Browser: Safari
I'm referring to the context menu component that is used to render the context menu to the grid columns and rows. Here is the official page's demo. The context menu used in the demo isn't on the mentioned device.
I've used the same component that is used in the mentioned demo.
File: grid-contex-menu.component.ts (available in the demo)
Component: GridContextMenuComponent
I have searched for any workaround for this but unfortunately could not find anything. It would be helpful if you can suggest any workaround.
Hi
I need to Add a point dynamically to a scatter chart without redraw / update the whole chart.
Something like a new point every few seconds - dynamically update.
Does anyone know a way to do it with Angular ?
Many thanks !!
In the telerik scheduler, how can we set the background color for a specific time range, for example 8AM-11AM for Monday and 10AM-3PM Tuesday etc.
I know we can override the time slot with the TimeSlotTemplateDirective, however, this does not have access to the current resource, it have access to all the resources, and on top of this is we cannot specific the time range?
Is there any example can be provided to help achieving this? And how about if we are grouping by resources? Is it behavior possible as well?
Thanks