Hi Thanh Le Minh,
Thanks for contacting Syncfusion support.
By default, We have added validation related URL link. If you want to override the validation means you can achieve by using the below share code snippet.
Please find the code snippet for your requirement.
<code>
@{Html.EJ().RTE("rteSample").Width("100%") .Locale("en-US").ContentTemplate(@<p>
content
</p>).ClientSideEvents(e=>e.Create("RTEcreate")).Render();}
function RTEcreate(args) {
var inst = $(this.element).ejRTE("instance");
// You can customize the isUrl function. Whatever related your scenario.
inst._isUrl = function (url) {
return (url != "") ? true:false;
}
}
</code> |
Regards,
Karthikeyan V.