Hi,
As soon as I click in the Editor, it "refuses" to allow focus to leave it.
I'm stuck, in my UI form, not being able to click anything else on the form.
I can continue to type in the editor *but I cannot get out*.
The editor is on the pane of a kendo TabStrip, so one has to click the tab to reveal it before it gets stuck
This is just started to happen with kendo updates in the last year or so...
I realize you'll need a reproducing scenario but have you had anything similar to this, any ideas?

Hi.
I use kendo UI 2016 Q1 version: 2016.1.112
categoryAxis: {
field: "Subject",
majorGridLines: {
visible: false
},
labels: {
template: '#= <title>value</title> <b>value</b>#'
}
},
I use kendo template expression for raw html with value.
if label template raw html this will show value with bold and have tooltip when hover mouse to this.
Now after i update kendo Q1 2016 it not work. this work with old version 2015.
how to fix this ?.
Hi
I am trying to do a custom zoom with a dataSource. New data should be loaded with a higher resolution when zooming in and lower resolution when zooming out.
I am having trouble finding the new min and max values for the x-axis after the zoom. I would expect these to be somewhere in the zoom event object, but it seems hidden pretty well. Can anyone point me to them, like e.sender.? or e.axisRanges.valueOf(...?..)?
Thanks
Sune
Hi!
I'm working on a rather large page and I notice that the page loads up with ugly controls and then the browser window hangs for a second or two and controls start converting to kendo. And once the whole page is ready, there is still some delay before inputs start accepting text or interaction. Is there a way/best practice to load up kendo faster or pre-cook? If not at least put up view (page) sized loading spinner until page finalizes. I'm assuming something in Kendo Framework would trigger a call back once everything is settled.
Thanks.
I am using the grid in an Angular component with calls to an API. In order to set the API parameters from another set of controls, I use the read function in the dataSource transport. My initial attempt at this function used the options.data.take and options.data.skip to set up the count and offset in my API, as well. In the grid options, I have the pageable set to an object with pageSizes and buttonCount. I can pull the correct data into the grid and use the pager at the bottom to move between pages. When the external filters object that is an input for my Angular component changes, the grid rebinds using k-rebind in the kendo-grid tag on the Angular view. This works most of the time.
The issue I have is when I have something with a lot of data and move to one of the later pages using the pager. If I then change my external filters to give me a smaller set of data, the grid attempts to rebind while on a page that is AFTER the last page in the new dataSource. Based on several questions I have seen, I added code to reset the dataSource.page to 1 in the read function prior to refreshing the data through the API. However, this causes the read function to run twice. I can minimize this effect by checking to see if the page is already 1, but any time the dataSource.page method is called, the read function runs twice. I do not want to cause the load on our API to be greater than necessary. I have tried just changing the options so that the calls to the API are correct, but this causes the pager to give odd numbers such as "250 - 4 of 4 items". Is there any way to stop this from happening and allow the pager to be correct?
My current read function is as follows:
read: function (options) { var filtersChanged = IsFilterChanged(); // method to do compare on external filters if (filtersChanged) { if (vm.gridOptions.dataSource.page() != 1) { vm.gridOptions.dataSource.page(1); } options.data.page = 1; options.data.skip = 0; } var params = { count: options.data.take, offset: options.data.skip }; if (vm.selectedFilters.myOption) { params.optionID = vm.selectedFilters.myOption; } // ... myService.availableItems.get( params, function (data) { options.success(data); }, function (error) { // do something });},The view is as follows:
<kendo-grid id="myItems" options="vm.gridOptions" k-ng-delay="vm.selectedFilters" k-rebind="vm.selectedFilters" ></kendo-grid>Thanks!
Hi I am able to call my odata controller with the correct key but I am missing the payload, so delta is null.
How can I set the payload? and also return the updated entity?
datasource definition:
var baseUrl = "odata/reports",
dataSource = new kendo.data.DataSource({
type: "odata-v4",
transport: {
read: {
url: baseUrl,
dataType: "json"
},
update: {
url: (data) => {
return baseUrl + "(" + data.models[0].Id + ")";
},
dataType: "json",
type: "PATCH"
},
destroy: {
url: baseUrl,
dataType: "json",
type: "DELETE"
},
create: {
url: baseUrl,
dataType: "json",
type: "POST"
}
},
webapi odata controller:
public IHttpActionResult Patch(int key, Delta<T> delta)
{
Validate(delta.GetEntity());
if (!ModelState.IsValid)
return BadRequest(ModelState);
var entity = Repository.GetByKey(key);
if (entity == null)
return NotFound();
if (!AuthenticationService.HasWriteAccess(CurentUser, entity))
return Unauthorized();
try
{
delta.Patch(entity);
Repository.Save();
}
catch (Exception e)
{
return InternalServerError(e);
}
return Updated(entity);
}
Hi,
When running webpack I get the error "Unused label" into the file node_modules\kendo\js\spreadsheet\runtime.functions.js
Hi,
I've installed kendo (latest buil) using npm with my pro license.
I'm able to make it work using webpack, but I could not do the same with jszip which is required for export.
Any suggestion?
Thanks!