How can I change a html editor extender's maximum allowed font size to 16px or '3' setting programmatically? I searched web but couldnt find any parameters for this like :
<asp:TextBox ID="zz" .... .... .. runat="server"></asp:TextBox>
<asp:HtmlEditorExtender MaxFontSize="16" ..... ..... runat="server"></asp:HtmlEditorExtender>
Got this error as expected:
Type 'AjaxControlToolkit.HtmlEditorExtender' does not have
a public property named 'MaxFontSize'.
Can this be done in Jquery or codebehind? This could be problematic when web pages are not designed for big fonts while control panel page allows big fonts automatically.
There are
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
...
in the last stage of page(looking through chrome's "look at source" option) and I need to destroy things like these with value bigger than 3 or 4.
Thank you.