Hi All,
I just statrt using Kendo UI. We going to start new project. Before that i want to know one thing like is it possible minimize grid data in one container
For example. I had two menu . when i click first menu it will populate with data. When i click second menu , First grid will minimize in container not closing and second menu grid data will populate. When i click minimized grid it will populate then second menu will minimize. Is there any functionality available kendo grid
After i updated my kendo-ui library from version "2019.2.517" to "2019.2.605" i am getting the issue "Cannot read property 'getTimezoneOffset' of null". This is only happening in timeline views, other views are working fine.
here is how i have configured the model section in datasource
let me: CalendarComponent = this;
model: {
id: "eventId",
fields: {
eventId: { from: "eventId", type: "string" },
start: { type: "Date", from: me.eventMapping.start + "" },
end: { type: "Date", from: me.eventMapping.end + (me.eventMapping.start !== me.eventMapping.end ? "" : "end") },
isAllDay: { type: "boolean", from: "allday" }
}
}
i have not done any other changes just updated the kendo-ui version.
Hi,
sorry if I am posting question that is maybe answered somewhere else, but I searched and didn't find anything.
I know it is possible to use WebSocket as dataSource on grid as shown on one of your examples, but wanted to check if it's possible to use web socket as DS on gantt and if yes, will it behave the same way as grid in terms of updates etc.
Thank you
[Resolved]
The SSL certificate on the Kendo CDN service(kendo.cdn.telerik.com) has expired. We are currently working on that. Any further information on the development will be posted in this thread.
Temporary you can use this https://da7xgjtj801h2.cloudfront.net/ instead of https://kendo.cdn.telerik.com e.g:
** The issue is now fixed. Please, accept our apology for the inconvenience caused!
*** A status page, where you can subscribe for notifications in case of future incidents is now available.
(this question was originally asked on stackOverflow https://stackoverflow.com/questions/57198635)
I want to limit the number of labels in the categoryAxis of my kendo chart.
So far I've calculated an automatic step from the number of data points and the width of the chart and it's worked great. But I'm starting to receive some data that triggers Kendo's automatic date label format switch to minutes and now I have 60 times more labels than I should, which creates huge amounts of lag (and makes the chart unreadable).
I've looked into setting a maxDateGroup, but that actually reduces the number of categories, thus ignoring some of the data.
I found a way to get the number of labels on the forums :
```
// get reference to the chart widget
var chart = $("#chart").data("kendoChart");
// get the categories length
chart._plotArea.categoryAxis.children.length
```
But it requires to draw the chart first, then read the property, then adjust accordingly and redraw the chart. Which isn't exactly ideal.
So I'm wondering if there is a way to set a max number of labels, or maybe limit labels to 1 per category ? Or any other trick-shot really :)
Note : this automatic switch works great for data that actually is recorded every minutes, but the series that's causing me problems is recorded every 30 minutes. Maybe there is some workaround here but I can't recall where I saw how to fiddle with these properties.
When we call Kendorangepicker, it enables 2 input fields - start and end dates. Is it possible to open kendorangepicker from single input field and once the ranges are selected, dates should return to the input field like 01-01-2019 - 20-09-2019.
Thanks,
Saravana MS
function
OnError(e) {
if
(e.errors) {
var
message =
""
;
// Create a message containing all errors.
$.each(e.errors,
function
(key, value) {
if
(
'errors'
in
value) {
$.each(value.errors,
function
() {
message +=
this
+
"\n"
;
});
}
});
// Display the message
viewModel.set(
"error"
, message);
errorWnd.center().open();
var
grid = $(
"#Promotions"
).data(
"kendoGrid"
);
grid.cancelChanges();
}
}
var
grid = $(
"#Promotions"
).data(
"kendoGrid"
);
//reference the grid's name here, instead of '#Promotions'
Hi,
Here is the example of grid that I am trying - https://dojo.telerik.com/IsoDUruR/4. I want to remove the dirty flag once save button is clicked. However, it doesnt work. Any idea?
Thanks!