Hi,
I encountered same issue as shown here: http://jsfiddle.net/ruapho/GaFd6/4/. The workaround is to define the children 'inline'.
Btw. Is it possible to use a service or factory to fetch data from service, e.g. by injecting the service to the read function? Or I should use the $.ajax or $.get functions?
Best regards
Marcin Danek
Hi,
I have a grid with horizontal scroll.
Whenever I use the scroll, the display of the grid is disrupted:
The first column of the header is cut in the middle (as you can see in the attached image) -
the content looks good but doesn't fit to the header.
What can I do about this?
Thanks!


This question has been asked, but all of the replies generally say just add fields to the schema and it will work. I think all necessary recurrence fields are in my schema. This is it:
schema: { model: { id: "MeetingID", fields: { MeetingID: { from: "meeting_id" }, title: { from: "desc", defaultValue: "No title", validation: { required: true } }, start: { type: "date", from: "start_time" }, end: { type: "date", from: "end_time" }, description: { from: "case_name" }, caseManager: { from: "case_manager", nullable: true }, mediatorIds: { from: "mediator_LawyerIDs" }, result: { from: "meeting_result", nullable: true }, caseNumber: { from: "case_number", nullable: true }, case_location: { from: "location", nullable: true }, parties: { from: "parties", nullable: true }, numParties: { from: "number_of_parties", nullable: true }, created_by: { from: "created_by", nullable: true }, creation_timestamp: { from: "creation_timestamp", nullable: true }, //Recurrence specific fields recurrenceId: { from: "RecurrenceID" }, recurrenceRule: { from: "RecurrenceRule" }, recurrenceException: { from: "RecurrenceException" }, attendies: { from: "Attendies" }, type: { from: "Type" }, deadline: { from: "Deadline" }, priority: { from: "Priority" }, labelAs: { from: "LabelAs" } } } } },
Help is greatly appreciated.
Hi,
I get this data from the server:
{ "id": 4215, "route_id": 181, "route_name": "Test Task", "start": "2015-12-04T01:00:00Z", "end": "2015-12-04T03:00:00Z", "recurrenceRule": "FREQ=WEEKLY;BYDAY=SU,MO,TU,WE,TH", "isAllDay": false}
I want to display the task start and end has i get it from the server.
I tried to use:
timezone: "Etc/UTC", but it still convert to local timezone.
here my code:
http://dojo.telerik.com/@idoglik6/ocavO
Has you can see the scheduler display the task from 3-4 (in my local timezone +2) and not like i want to see it (1-3)
Thanks,
Ran
Hi,
we're using Kendo UI with the MVVM implementation for on of our web applications (SPA) and I have a question regarding the list view.
To provide the option to change the language on the fly, we're using a script library that basically looks for html-elements with a specific attributes replaces their text with a string based on the value of the attribute and the current culture you selected. To trigger this, a function needs to be called that translates the current document.
Now this wasn't problem so far, since I always found the right places to trigger the translation, but now I'm at a loss with the ListView templates. Both the data and the edit template have such tags that need to translated (<dl> tags to be specific). Basically what needs to happen is the following:
Cases 1-3 are no problem.
The cancel event, unlike the other events, fires before the template is loaded. So the translation runs, but at this point the Template is not loaded and therefore not translated.
Is there any way to do this? The best option (which I could not find on the internetz) would be to hook into the "load template" event if there is one or simply any other possibility to call this translation after the template loaded.
I tried many other ways and many other events - my best option was to bind to the "DOMSubTreeModified" event, but that backfires (literally) because the translation algorithm also modifies the subtree :/
Any solution would be appreciated.
Hi,
I'm trying to load data using custom read function in DataSource transport. I have to use the angular service due to usage of angular $http interceptors providing the user authentication mechanism.
The problem start when I try to use the controller's "MyService" field in the read function, as shown bellow:
export class CountersController {
constructor(private $scope: ng.IScope,
private $q: ng.IQService,
myService: LonginusCountersApp.Services.IMyService) {
this.MyService = myService;
}
private MyService: LonginusCountersApp.Services.IMyService;
public counterGroups = new kendo.data.HierarchicalDataSource({
transport: {
read: function (options) {
this.MyService.GetCounters().then((data: ng.IHttpPromiseCallbackArg<{}>) => {});
}
}
});
}
The problem is, that on Runtime i get error, that I try to call GetCountes() on undefined or null object (MyService).
It there any way to pass the service reference to the read function?
I followed the response to the thread: http://www.telerik.com/forums/unable-make-treeview-work-with-angulajs-service
but it seems not to work, or at least not to work with TypeScript.
Do You have any idea, how to achieve this?
Best regards
Marcin Danek
When using spreadsheet - IE (11) dies out on:
SCRIPT5007: Unable to get property 'start' of undefined or null reference.
File: kendo.web.min.js, Line 61, Column 22350
Using build 2015.3.1111
I've tried using either kendo.all.min.js or kendo.web.min.js
Firefox, Chrome - no problem as usual.