Hello,
I have a date column in my grid. But sometimes the date picker filter doesn't open. When I debug, I can see it opens then closed automatically because the scroll event is bound to the grid in the open function when options.modal is not true.
What does options.modal do? I don't see any documentation about this. And why bind the scroll event and close the popup in this case?
Best regards,
Yajing

When expanding all kendo grid rows, it is very slow.
The detailtemplate is very simple, but it is still so slow. Any suggestions how to make it faster?
Demo : http://dojo.telerik.com/EHiSa
I need to perform a custom action on a row. For that I want to use the rowheader contextmenu.
How can I know wich row Index is the context menu being applied? the contextMenu e.target seems to be the whole spreadsheet.
I cannot find any clue in either contextmenu or spreadsheet docs or forums.
var rowHeaderContextMenu = this.currentSpreadsheet.rowHeaderContextMenu();rowHeaderContextMenu.remove("[data-action=delete-row]");rowHeaderContextMenu.remove("[data-action=hide-row]");rowHeaderContextMenu.append("<li id='myAction' data-action='row-customaction'>My custom action</li>");rowHeaderContextMenu.bind('select', function(e){ console.log('contextmenu row', e); var rowIndex = ?????????
doMyCustomAction(rowIndex);
});
Extra points if the answer applies also for a cell / columnHeader.
Thanks in advance.
I am using the filtering from column menu for a grid and I have to support some other languages. I wanted to use the default translation that is provided with the kendo instalation, however I saw that not everything is translated.
What I have noticed was that the filtermenu in messages has also a title that is basically the same text as the info
messages: { info: 'Show items with value that:', title: 'Show items with value that:',}but on the translation files the title is not translated
if (kendo.ui.FilterMenu) {kendo.ui.FilterMenu.prototype.options.messages =$.extend(true, kendo.ui.FilterMenu.prototype.options.messages,{ "info": "Mostrar filas con valor que:", ....}I know how to implement the translation but I would like to register this as a request to be solved.
I've hooked into the change event on the spreadsheet to do some processing of the value entered. Inside the method, I'm using range.forEachCell() to loop over the cells that changed
Anytime I paste a value into a cell it is looping over the range twice. Here is a quick snippet from the javascript console:
cell value: 4/3/2018 3:03
*** after forEachCell
cell value: 4/3/2018 3:03
*** after forEachCell
Is this expected behavior or is this a bug in your software?
I'm using the current release of your software, testing in the latest version of Firefox 59.0.2 (64bit) and have verified it on Chrome v66 (64bit).
Let me know.
Thanks.
Greg

is there any way to append a context menu to each (or part of them) cells of the kendo grid ?
what I am trying to do is to give to the cell a drill-down options functionalit.
what I would like to do is: right click a cell of the grid and view a context menu with the available drillable options, once I clicked one action of the menu I need to retrieve the sender cell parameters like for example row id, column id, value etc.. depending on action needs.
I've found a way to have a similar functionality by using tooltip which is fired on left-click and which allows me to retrive sender-cell data through selected method of the grid, but I'd like to improve this solution.
Any suggestions? I'm using angular 1.x.x


Hello,
if i set the dimensions of the MediaPlayer with:
style="width: 500px; height: 400px;"
i have this problem:
kendo.all.js:77891 Uncaught TypeError: Cannot read property 'find' of undefined
with this settings: style="width:640px; height: 360px;"
everything works
why?
Thank you

Hi.
Is there how to draw a line of categoryAxis between label and label on AreaChart.
AreaChart's majorGridLines and minorGridLines draw lines on the label.