Disable the IMG button and Anchor tag button in toolbar

Hello

I would like to disable the image and anchor buttons in the the tool bar so they can't be selected from the toolbar menu. I was able to disable the code </> button using the markdown editorMode.


Image_2706_1729610648650




<div class="col-12">

    <span><label asp-for="Input.WelcomeMessage"></label>  <i class="fa-solid fa-circle-info" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="@Html.TextBoxWithToolTipFor(m => Model.Input.WelcomeMessage)"></i></span>

    <ejs-richtexteditor id="Input_WelcomeMessage" showCharCount="true" maxLength="1000" editorMode="Markdown">

        <e-richtexteditor-pastecleanupsettings prompt="true" deniedTags="@tagsNotAllowed" ></e-richtexteditor-pastecleanupsettings>

    </ejs-richtexteditor>

</div>



1 Reply

VY Vinothkumar Yuvaraj Syncfusion Team October 23, 2024 12:59 PM UTC

Hi Jaime Martinez,


To disable the image and link buttons in the toolbar of the Rich Text Editor's Markdown component, you can customize the toolbar by specifying only the tools you want to include in the e-richtexteditor-toolbarsettings items. Here's an example of how to achieve this:

@{

    var items = new object[]{

        "Bold", "Italic", "StrikeThrough", "|", "Formats", "OrderedList", "UnorderedList", "Undo", "Redo"

    };

}

<ejs-richtexteditor id="allToolsRTE">

    <e-richtexteditor-toolbarsettings items="@items"></e-richtexteditor-toolbarsettings>

</ejs-richtexteditor>


In this example, the CreateLink and Image commands are not included in the items list, effectively removing them from the toolbar.

For a live demo, you can refer to the following link: https://ej2aspnetcore.azurewebsites.net/aspnetcore/markdowneditor/overview#/material3 


Regards,

Vinothkumar




Loader.
Up arrow icon