Hi Randy,
Thanks for contacting Syncfusion Support.
You can remove the General and Advanced tabs in the RTE Image browser by setting its corresponding display CSS property to none. Have a look at the following code snippet.
<style type="text/css" class="cssStyles">
div.e-rte-imageTab.e-tab.e-js.e-widget {
display: none;
}
</style> |
You can remove the Add Newfolder button by using removeToolbarItem property of Image Browser in the RTE create event.
<script>
$("#rteSample").ejRTE({
toolsList: ["images"],
tools: { images: ["image"] },
width: "100%",
minWidth: "10px",
create: function (args) {
this._explorerObj.removeToolbarItem("NewFolder");
}
});
</script>
|
Refer to the following Playground sample:
Let us know if you require further queries.
Regards,
Prince