Is it possible to group two or more resources together on data with relationship reference in scheduler?
Below is the sample code we are trying to implement, we wanted to check if we can map between two resources [Specialities, Practitioners].
In Practitioners data, it will have SpecialityID field which refer back to [Specialities](SpecialityID) field?
public group: any = {
resources: [
'Specialities'
,
'Practitioners'
],
orientation:
'horizontal'
};
public resources: any[] = [{
name:
'Specialities'
,
data: [
{ text:
'Phsiotheraoy'
, SpecialityID: 1, color:
'#6eb3fa'
, type:
'Room'
},
{ text:
'Massage Therapy'
, SpecialityID: 2, color:
'#f58a8a'
, type:
'Room'
},
{ text:
'Chiropractic'
, SpecialityID: 3, color:
'#f58a8a'
, type:
'Room'
}
],
field:
'roomId'
,
valueField:
'value'
,
textField:
'text'
,
colorField:
'color'
,
multiple:
false
}, {
name:
'Practitioners'
,
data: [
{ name:
'Angelo Williams'
, Personvalue: 1, color:
'#008AFF'
, type:
'Person'
, img:
this
.firstContactImage, initials:
'AW'
, SpecialityID: 1 },
{ name:
'Desiree Watson'
, Personvalue: 2, color:
'#E91E63'
, type:
'Person'
, img:
this
.secondContactImage, initials:
'DW'
, SpecialityID: 1 },
{ name:
'Aron Patrickson'
, Personvalue: 3, color:
'#43A047'
, type:
'Person'
, img:
null
, initials:
'AP'
, SpecialityID: 2 },
{ name:
'Benjamin Chris'
, Personvalue: 4, color:
'#B7342C'
, type:
'Person'
, img:
null
, initials:
'BC'
, SpecialityID: 3 },
],
field:
'personID'
,
valueField:
'Personvalue'
,
textField:
'name'
,
colorField:
'color'
,
multiple:
false
}];
Attached image is how this render, it will have each Specialities (3) on first grouping and each Practitioners (4) on the second grouping.
The question is, for example is it possible to only display [Angelo Williams, Desiree Watson] under [Phsiotheraoy], [Aron Patrickson] under [Massage Therapy] and [Benjamin Chris] under [Chiropractic]?
So which mean is it possible to display Phsiotheraoy (2) Practitioners, Massage Therapy(1) Practitioner and Chiropractic(1) Practitioners, rather than each of them have all (4) Practitioners?
Thanks
Hello,
While I am pasting an excel cell which has a background color and the font is bold, the styles won't be rendered inside the editor.
Is the pasting of formatted excel cells supported in Kendo Angular Editor?
Thanks.
Hello,
I want to user a Grid with a Rest API, by remote data loading.
To load only few datas at one time, i want to use : endless scroll or virtual scroll.
But I'm not able to make it works.
On my rest API, i made a specific way, which load only 50 items with an offset (with the sort & take parameter of State given to my api).
But on the grid :
- I have 15 visibles lines on my grid (set by RowHeight), I load 50 items by my rest API.
- in endless scroll mode, the scrollBottom event never fire, so it doesn't load more data.
- in virtual scroll mode, the pageChange event only fire once.
I have more than 10K lines in my database, i was able on to view 60 of them...
Is there a specific setting to apply ?
Hi,
I'm trying to create a menu with two levels that is bound to an array. I'm using the kendoMenuHirarchyBinding directive to set the textField and childrenField because I use my own data structure. I then nest a ng-template with a template for the first level menu items using the kendoMenuItemTemplate directive. So far so good.
I want to give the second level children a different template so I assign a TemplateRef to the contentTemplate field of each item in the ngOnInit life cycle method as instructed in the docs. It doesn't work. It only works if I don't use the kendoMenuHirarchyBinding directive. Surely there's a smart way to go about it.
Thanks,
Tomer
Hi,
I need to create a custom timelineview in the kendo scheduler for angular to show a timeperiod that will be changed via inputs, in order to achieve a component with a similar behaviour than the RadTimeLine for Silverlight and WPF.
My goal is to filter the scheduler with the inputs that I receive from the kendo stockchart navigator. I want to show the same period in the chart and in the scheduler.
Is there anyway to do that? I found an example for jQuery but I am not able to implement it in angular. In the link that I posted below, you have created a custom view that receive with an input the duration of the view. That's exactly what I need to do but with two dates.
https://docs.telerik.com/kendo-ui/controls/scheduling/scheduler/how-to/custom-views/timeline-with-dynamic-length
Thanks in advance.
I am unsure how to do this and correctly update the columns on the grid.
To sum up my use case the below is a very simple example of what I am trying to do.
Grid is initialized on page load with data source 1, data source 1 has columns A, B, C, D. Grid correctly shows columns ABCD. The user now wants to view a different data set by selecting a series of drop downs on the page. Updating the data source to data source 2 with columns B, D, E, F. The grid now incorrectly shows columns ABCD.
Is there a way to refresh the grid in Angular 2+ after a data source change that will reset columns from the data source?
Can someone help with my question?
I have a grid with dynamic data source based on user's selection. All data source has one common field: photo. I have photo's url showing up in the grid. what I need is make this url as clickable. Or another option is, make this photo column a button field with text of "View Photo", so user can click it and open up in a new blank page to view the photo. I have googled a lot but nothing really help since my data source dynamically fill in the grid. The Telerik documentation page doesn't have how to dynamical data source with clickable cell.
Here is my example code.
<kendo-grid [data]="gridData" [resizable]="true" [sortable]="{mode: 'multiple' }" [sort]="state.sort">
//the following code doesn't work.
<kendo-grid-column >
<ng-tempalte *ngIf="field=='Photos'" >
<a href="exampleurl" target="_blank">{{dataItem}}</a>
</ng-tempalte>
</kendo-grid-column>
</kendo-grid>
Sometime our angular 9 application (after leaving idle for sometime), starts displaying these characters in kendo grid. Please see attached image.
This happens for all drop downs, left, right arrows etc. Reloading sometimes fixes it but sometimes I need to open a new browser.
can you please suggest what might be happenning?
Thanks