According to the API 'execute' event "Fires when an Editor command is executed."
But id doesn't fire on table or image insert.
Example: http://dojo.telerik.com/uGUvE
Hello,
In our app we use google maps and we have embedded forms with some kendo combobox, numeric textbox, buttons...
When I open the map fullscreen mode, the combobox list is not displayed.
This only happens with Firefox and Internet Explorer. Chrome is OK
Here is a dojo.telerik which shows the problem : http://runner.telerik.io/fullscreen/@tdf/eZOgA/5
Thanks in advance

Hi
I'm getting a 404 error on the following CDN link. Could you advise where the most recent version of this file is please?
https://kendo.cdn.telerik.com/2017.2.504/styles/kendo.dataviz.black.mobile.min.css



Hi,
I had follow the link below to append row while scrolling..
http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/binding/load-and-append-records
I created some textbox to let user fill in and I put it inside the detail template.. But after scrolling the grid, it rebind the data..
Is there any method not to refresh the datasource in grid and just append new row at the bottom while scrolling the grid?
Thanks.
Regards,
Su Pei
Can dropzone be used without async?

I am using the Kendo AngularJS date/time picker i.e. <input kendo-date-picker ... />
I use the componentin all kinds of places in my web application. However on one page, clicking a datepicker causes it to disappear. See the following GIF of the behaviour: http://imgur.com/a/UAJug
The other datepickers in the GIF mostly work okay, but the featured one does not. Funnily enough, when you scroll back up the page and then scroll down - or when you make your window height smaller - the datepicker works correctly and the calendar does not disappear.
This is the snippet of the datepicker in question:
<div class="form-group"> <label class="col-xs-3 control-label" title="Default value"> {{'DATASOURCE.VARIABLES.DEFAULT_VALUE' | translate}} </label> <div class="col-xs-8" ng-switch="stagedVariable.type"> <input ng-switch-when="Date" kendo-date-time-picker k-ng-model="stagedVariable.defaultValue"/> <input ng-switch-when="number" class="form-control" ng-model="stagedVariable.defaultValue" type="number" max="9007199254740991" min="-9007199254740991"/> <input ng-switch-when="string" class="form-control" ng-model="stagedVariable.defaultValue" type="text"/> <select ng-switch-when="option" class="form-control" ng-model="stagedVariable.defaultValue" ng-options="val as val for val in stagedVariable.allowedValues"> </select> </div> </div>Hello,
I'm trying to replace filter widget in filter row in grid and detail grids.
My replacement should be standard text box input: <input class="k-input" id="fullName" style="width: 100%;" placeholder="Hledat subjekt">
It would be perfect if i can set template of this filter cell when defining columns like this:
columns: [
{
field: "color",
filterable: {
cell: {
template: <input class="k-input" id="fullName" style="width: 100%;" placeholder="Hledat subjekt">
},
showOperators: false
}
}
}
I'd like to define it by html element or by kendo element if there is such (i have not found any)
Can you help me with solution please?