Reputation: 1
I've enabled in-line editing on my Telerik grid. However, whenever I click on a cell, I get an error saying "cannot read property." After some investigation, I realized that the issue is caused by having a main form already created and using the Telerik grid inside that form. When editing is enabled, a new form is created every time I try to edit a cell, leading to a nested form error. I'm not sure how to resolve this. I've seen that someone else had a similar issue (Cannot read property 'settings' of undefined while inline editing Kendo grid) and got it resolved, but I'm not sure how their solution applies to my case.
I attempted to ignore the jQuery validation within my nested form and also tried detaching and reattaching the form, but that didn't help much.
Upvotes: 0
Views: 49
Reputation: 26
The Kendo Grid does not render a form for editing by default. It seems that some kind of custom editor is being used. Can you provide some details on the exact implementation?
What I would do is to:
Upvotes: 0