Hello,
The purpose of the Batch editing is to allow multi-line editing and perform multiple changes before the user decides to save the data. Its intention is to gather all the changes and send a request to the server only once, containing all the relevant data.
Implementing a functionality to send the edited data the moment a cell loses focus serves the exact opposite purpose of Batch editing. Creating the logic for such behavior would be burdensome work.
If having such behavior is a must-have, then you might opt for using a
RadSpreadsheet or to make use of
TemplateColumns and send the data to the server on the blur event of the controls inside the template.
If wish to open the next cell for editing when a key is pressed, (e.g., using Tab), you can try attaching the KeyDown event to the grid in the PageLoad() event handler:
Then customize the following handler according to your needs. You can check out the
Batch Editing Client-side API for more information on working with batch editing.
Attached, you can find a sample with the aforementioned approach implemented.
Also, attached you can find a project with saving changes without clicking the Save Button. Hence, the changes take place when the OnChange event is called. Note that this is a rather custom solution and Telerik does not bear responsibility for performance implications or any misbehavior that might occur.
With the help of
Client-Side Programming and
Batch Editing API you can customize the projects/approaches to meet your requirements.
Let me know if you need further clarification.
Kind regards,
Tsvetomir
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.