Completed
Last Updated: 10 Apr 2020 17:37 by ADMIN
Release 2019.R3.SP1
Amin
Created on: 24 Jul 2019 13:01
Category: Grid
Type: Bug Report
1
kendo grid on 'incell editing mode' doesn't accept value changes, while using mobile phone

the Kendo grid does't accept cell value changes when using android mobile phone with the Chrome browser. You can test it on the telerik demo https:demos.telerik.com/aspnet-mvc/grid/editing.

for example change the value of the Unit Price and go to the other cell. you will see that the value will become the original value.

just by touching some where outside the border of the grid the value will change.

2 comments
Amin
Posted on: 30 Jul 2019 10:12
Thank you so much. The function onCellClose(e) works fine!
ADMIN
Preslav
Posted on: 29 Jul 2019 15:52
Hello Amin,

Thank you for reporting this. This is a bug, and thus, I converted this ticket into a public bug report:
https://feedback.telerik.com/kendo-jquery-ui/1421654-kendo-grid-on-incell-editing-mode-doesn-t-accept-value-changes-while-using-mobile-phone

As a workaround, handle cellClose event and trigger the blur event of the child input.

function onCellClose(e) {
    e.container.find("input").trigger("blur");
}

Finally, as a small token of gratitude for pointing us to this bug, I updated your Telerik points.


Regards,
Preslav
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.