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.
Up arrow icon