Hi Brett,
Thank you for using Syncfusion products.
You can get editor reference when an actionSuccess event is triggered. To achieve this need to pass In-place Editor’s component reference into actionSuccess event definition and then configure v-on directives to this definition. Kindly refer to the following code.
v-on:actionSuccess="success($event, $refs.editObj1)"
// $event - Arguments of In-place Editor success event
// $refs.editObj1 - Additional argument which holding current editor reference. |
Configure success event and access editor element’s instances as shown below.
success: function(successArgs, editRef) {
console.log(successArgs); // Success event arguments
console.log(editRef.$el); // Event triggered In-place Editor element
console.log(editRef.ej2Instances); // Event triggered In-place editor instance
} |
We have prepared sample based on your requirement, please find the sample at the following link
Please let us know if you need any further assistance on this.
Regards,
Prince