We previously used the following in a ToolsFile.xml to allow users to change the current paragraph to a blockquote.
We're moving everything over to format sets in a new ToolsFile.xml. I thought the following would work, but the blockquote options do not appear in the format sets drop-down when a paragraph is selected.
Is there a way to allow users to change a paragraph to a blockquote using RadEditor?
<paragraphs> <paragraph name="<blockquote>Block Quote (Full)</blockquote>" value="<blockquote>" /> <paragraph name="<blockquote class='floatright'>Block Quote (Float Right)</blockquote>" value="<blockquote class='floatright'>" /> <paragraph name="<blockquote class='floatright'>Block Quote (Float Left)</blockquote>" value="<blockquote class='floatleft'>" /></paragraphs>We're moving everything over to format sets in a new ToolsFile.xml. I thought the following would work, but the blockquote options do not appear in the format sets drop-down when a paragraph is selected.
<formatSets> <formatSet tag="blockquote" title="<blockquote>Block Quote (Full)</blockquote>" /> <formatSet tag="blockquote" title="<blockquote>Block Quote (Float Right)</blockquote>"> <attributes> <item name="class" value="floatright" /> </attributes> </formatSet> <formatSet tag="blockquote" title="<blockquote>Block Quote (Float Left)</blockquote>"> <attributes> <item name="class" value="floatleft" /> </attributes> </formatSet></formatSets>Is there a way to allow users to change a paragraph to a blockquote using RadEditor?
