$("#context-menu").kendoContextMenu({
target: "#grid",
filter: "tr.k-state-selected[role='row']",
select: function(e) {
var grid = $("#grid").data("kendoGrid");
var model = grid.dataItem(e.target);
alert( model.age + " " + model.name);
}
});
Hi,
Thank you for contacting us about the issue you have faced. I was able to reproduce it also in my side and have logged it in our backlog so our developers will investigate it in more details. You could observe its status in the following github item:
https://github.com/telerik/kendo-ui-core/issues/5497
As a small token of gratitude for your report I'm adding 500 Telerik points to your account.
Best Regards,
Misho
Progress Telerik
Additional notes:
1) The problem is NOT reproducible using the old version of kendo scripts on a mobile device running Android 10
I prepared a copy of the dojo sample using the latest kendo scripts (2019.3.1023):
http://dojo.telerik.com/epodUTIn/2
When I tried both samples on a mobile device running Android 10, I noticed that it was reproducible on the latest version of kendo scripts, but it was working fine with the older version!
I found that detectOS function in version (2017.3.1026) is not recognizing Android 10, while it's detetcted correctly in the latest version. Might be related?
2) The problem is reproducible using context menu configured on different types of elements, so I think it's not related to the GRID control itself.
Best regards,