Hi,
Not a question but more of a comment/bug report:
I use Kendo for Jquery, version kendoui.for.jquery.2021.3.1109. There seems to be a typo in the message file for en-GB. It says:
...options.messages=e.extend(!0,kendo.dataviz.ui.Map.prototype.optionss.messages,{tileTitle:"Map title"}))}(window.kendo.jQuery)
where it should say:
...options.messages=e.extend(!0,kendo.dataviz.ui.Map.prototype.options.messages,{tileTitle:"Map title"}))}(window.kendo.jQuery)
This prevented kendo from working in my localised application. The other languages I use (nl-NL and de-DE) do not contain this typo.
Regards,
Henk

Like subject says - I build in a rangeslider. Now I want it drawn to "scale" => width: 780px ... but every attempt so far has failed
I tried style= in the <div it self, then I found you api description , so I build the exact same code from the api-description in my document.ready() function .. only to be greeted with the subject line "rs.resize() is not a function ...
As the remaining Kendo ui stuff is working and also the rangeslider does "everything else" .. conforms to the properties I set in the definition ...
I'm at the moment without any clue what could lead to the described error message
Every help is welcome
my js-code for that matter$(document).ready(function () {
$("#rangeslider").kendoRangeSlider({
change: rangeSliderOnChange,
slide: rangeSliderOnSlide,
min: 0,
max: 780,
smallStep: 1,
largeStep: 10,
tickPlacement: "both",
});
var rs = $("#rangeslider").getKendoRangeSlider();
rs.wrapper.css("width", "780px");
rs.resize();
});
Hi,
I have an observable array of observables which is linked to a kendo grid as datainput. I am trying to sort it by clicking on column header. I have made the sortable : true. But the issue is when the array is
self.array = ko.observableArray([{ Cabin: 'eco' }, { Cabin: 'taper' }]); The sorting works
But If the array is
self.AllocArray = ko.observableArray([{ Cabin: ko.observable('eco') }, { Cabin: ko.observable('taper') }]); then the sorting doesn't work.
Is there any possible solution around this?
Many thanks,
Jason
Hello,
I am working with diagrams and I need to replace connection textbox for a link.
I tryed setting content, template and visual, but nothing worked.
That does not work, the id I set to the group doest not appear in the HTML :/
Is there anyway to do it?
Thanks!
I am trying to remove the default upload and clear button using mvvm ?
<input id="files" name="files"
type="file"
data-role="upload"
data-async="{ saveUrl: '@Url.Page("/FADT")?handler=FileUpload', autoUpload: false, multiple:false }"
data-bind="visible: isVisible,
enabled: isEnabled,
events: { select: onSelect, cancel: onCancel, complete: onComplete, success: onSuccess, upload: onUpload }">
how do I do that ? Can I use a template with MVVM if so how ?
Hi,
I am trying to add row level filter textbox while generating dynamic columns and models.
But, I am not able to make the row level filter while generating the dynamic columns and models.
If I add filterable: {mode: "row"} this is code in my project, the grid is not loading and showing some error.
I used below code for this issue.
Please help me to resolve this issue.
var model = self.generateModel(gridData);
Hi,
In Gantt Chart Day mode, when I scroll timeline part in Day mode, I can't see the Date, hours are only visible (as you can see in attached screenshot). Can I fix this issue any way?? Fix date after scrolling or something else??
Thanks in advance.

Hello,
In my solution, I use AngularJs and package @progress/kendo-ui@2018.2.704.
Today I updated the package to latest version and I encountered weird issue regards to kendo dropdownlist.
In place where we use brackets and property name like {{property}}, kendo instead of displaying property value shows {&zeroWidthSpace;{property}&zeroWidthSpace;}.
Does anyone know what was changed and produced that issue and how I can fix that?
Hi
I'm having an issue with persist states and custom command buttons
Please see this dojo code here
http://dojo.telerik.com/oraTI
To replicate the issue
- If you run the code and press any of the Edit buttons you get a 'clicked' alert message.
- Then press 'Save State' to save the grid state to local storage - you should see a 'saved' alert message
- Then run the code again, which will load the localStorage after the grid has loaded - you should see a 'loaded' alert message
- Now if you click the 'Edit' button nothing happens
The state is laoding fine and adjusting the grid display correctly as per the saved sate, but the custom buttons don't work.
Any suggestions on how to get this working?
Thanks
Dave
