Hi,
We recently upgraded from 2016 R2 to the latest 2017 R1 and noticed a change in the editor toolbar behavior. We insert a kendo combobox into the editor toolbar as a custom tool. Prior to upgrading we could click on the combobox, it would allow focus and we could type into the combobox, filtering the list of options. Now when clicking the combobox it does not allow focus. This seems like the editor is preventing focus on-click as we see this behavior for the built it comboboxes (font and font size).
Is this an intended change? If so, how can we allow focus to our combobox? Thanks,
Randy
Hi I am working with Kendo scheduler with AngularJS. Only month view is activated. Sometime I am facing a problem which one I can not reproduce always. Upon double clicking on any date I am going to date edit page(diff html same controller). I am editing some thing there and after saving, coming back to scheduler. From the edit page, I can back to scheduler without editing anything. When I just coming back to scheduler without editing/saving anything sometime I found that date selection is not correct. For example, If I click 5 Jan, 4 Jan is being selected, If I click 28 FEB then 27 Feb is being selected. For the first date of each week (First cell of each row) is being selected correctly. Any Idea?
Here is my scheduler option
$scope.schedulerOptions = {
date: stDt ,
startTime: stDt,
min: $scope.minDate,
max: $scope.maxDate,
height: 750,
autobind:
true
,
views: [
{
type:
"month"
}
],
timezone:
"Etc/UTC"
,
dataSource: $scope.tmpltDS,
editable:
false
,
selectable:
true
,
change: scheduler_change,
dataBound: scheduler_dataBound
};
Hi,
I tried to use Kendo-ui-react-jquery-diagram component, but i found an issue when requiring kendo.dataviz.diagram :
var _kendoDatavizDiagram = require('kendo/js/kendo.dataviz.diagram.js') ==> returns empty object.
How can i fix this problem ?
Thanks
Hello,
I wanted to update my TreeView control which uses a HierarchicalDataSource after I updated the array it uses.
You can see the fiddle here: https://jsfiddle.net/ZoolWay/gev9zj4j/
How can I update/refresh my TreeView after adding items? Changing a text works this way...
// how the datasource is configured:
var
myData = ...
// already contains two items, one with subitems
var
myDataSource =
new
kendo.data.HierarchicalDataSource({
data: myData
});
// add item to the array:
myData.push({
'id'
: 3,
'text'
:
'Item 3'
});
// read the updated array
myDataSource.read();
Hi
I try to read data from my angular service with this code (see below) but when i try to do a read() after init my service never call, what I'm wrong? I need to do that to reduce amount of data and re read when change month on scheduler using dataBound event
transport: {
read:
function
(e) {
return
modelService.getData({
startDate: vm.startDate,
endDate: vm.endDate,
userIds: []
}).success(
function
(result) {
e.success(result.data);
});
}
},
schema: {
type:
'json'
,
data:
'result.times'
}
Hi,
I'm having some issues with some kendo controls, mostly with the grid and the autocomplete.
The grid is being created with KendoUI and the Autocomplete with ASP.net MVC editor templates and both are a bit lower than expected.
If i search something on the autocomplete or load some data into the grid it makes the call to the webservices and after the data is return it still
a delay (+-6 seconds) before the content is painted on the control.
I have trying to query the same api endpoints using a jquery autocomple and its way faster.
Also the page in general has +20 kendo controls and it takes quite long to load.
So my question is, is there any way that i can measure and optimize the performance of the telerik controls?
Thanks in Advance