If you want to disable several formatting options in RichHTML filed, lets say you do not want user to use any of the table options, you do not want user to use images options, no font options then you can do this in following way :
<div class="contentpagecontent">
<PublishingWebControls:RichHtmlField
FieldName="PublishingPageContent"
AllowTables="false"
AllowImages="false"
AllowFonts="false"
runat="server"></PublishingWebControls:RichHtmlField>
</div>
Look at this snap after applying these options :
If you want to go for more customization, then here is a link.
That's it. you are done with your job.
1 comment:
Which file do you need to amend??
Post a Comment