Get actual image name and save it in Database

We want to paste image in Rich text editor. Image name is not accurate in upload/save handler.

Please suggest how to get actual image name uploaded and how to save it in Database


3 Replies

VJ Vinitha Jeyakumar Syncfusion Team June 18, 2024 06:02 AM UTC

Hi Mahesh Machina,

Your requirement to get the actual image name while pasting an image into the RichTextEditor can be achieved by using the actionBegin event like below,

Code snippet:
 
function actionBegin(args) {
  if (
    args.requestType == 'Paste' &&
    args.originalEvent.clipboardData.files[0]
  ) {
    var imageName = args.originalEvent.clipboardData.files[0].name;
  }
}



Regards,
Vinitha


MM Mahesh Machina replied to Vinitha Jeyakumar June 18, 2024 10:18 AM UTC

Is it possible to send additional information in saveUrl handler and change image source in rich text editor after pasting it in local drive with updated name



VJ Vinitha Jeyakumar Syncfusion Team June 19, 2024 07:36 AM UTC

Hi Mahesh Machina,

You can rename uploaded images in server before inserting it in the Rich Text Editor using imageUploadSuccess event. Please check the documentation below,


Regards,
Vinitha

Loader.
Up arrow icon