We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

how to restrict image upload or image pasting in richtexteditor or to remove the functionallity of pasteing the image from shortcuts

how to restrict image upload or image pasting in richtexteditor or

to remove the functionallity of pasteing the image from shortcuts.




1 Reply

VY Vinothkumar Yuvaraj Syncfusion Team January 13, 2023 05:00 PM UTC

Hi Chacko,


You can able to achieve your requirement by using actionBegin event. In below sample, we have prevented image inserted into Rich Text Editor component using actionBegin event.


function actionBegin(args): void {
  if(args.requestType == "Image"){
    args.cancel = true;
  }
}


Sample : https://stackblitz.com/edit/yb9js5-npogjm?file=index.ts,index.html


Regards,

Vinothkumar


Loader.
Live Chat Icon For mobile
Up arrow icon