xhtml ビューに rich:editor フィールドがあり、デフォルトのフォント サイズは 11 です。次のようになります。
<rich:editor id="editor_value"
configuration="#{editorBean.currentSimpleConfiguration}"
width="560" height="130" viewMode="#{editorBean.viewMode}"
value="#{bean.value}">
デフォルトのフォントサイズを変更して大きくしたい。
次のように「f:param」を使用してこれを実行できることを知っています。
<rich:editor id="editor_value"
configuration="#{editorBean.currentSimpleConfiguration}"
width="560" height="130" viewMode="#{editorBean.viewMode}"
value="#{bean.value}"/>
<f:param name="font_size" value="13px"/>
</rich:editor>
または、割り当て「font_size=13px」を「simple.properties」ファイルに配置します(「configuration="#{editorBean.currentSimpleConfiguration}"」で参照されます)
しかし、これらの解決策は有効ではなく、フォント サイズは 11px のままです...
誰が私が間違っているか知っていますか?
ありがとう