This example illustrates how to perform check spelling in a specific ASPxGridView editor in Inline edit mode:
- Hide the default Update and Cancel command buttons by handling the ASPxGridView.CommandButtonInitialize event;
- Define custom Update and Cancel buttons in order to provide a custom response when clicking them and prevent editing changes from immediate submission;
- Handle the client-side ASPxClientGridView.CustomButtonClick event. If the "Update" button is clicked, perform check spelling in a specific editor via the client-side ASPxClientSpellChecker.CheckElement method (pass the editor input element retrieved via the client-side ASPxClientEdit.GetInputElement method as a parameter);
- After the check spelling procedure is completed, submit the editing changes via the client-side ASPxClientGridView.UpdateEdit method.
Note that data modifications are not allowed in online demos. To allow editing in local/offline mode, download the example and comment out the "throw..." operation in the ASPxGridView.RowUpdating event handler.