The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
VJVinitha 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;
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
VJVinitha 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,