smartGWT 和 RichTextEditor:如何设置可用字体?

发布于 2024-10-09 20:10:07 字数 141 浏览 3 评论 0原文

我正在使用 smartGWT 的 RichTextEditor,默认情况下它带有 7 种不同的字体,但我只想支持 1 种字体类型,而不是 7 种,但我想要支持的字体不随 RichTextEditor 一起提供。如何从 RichTextEditor 设置支持的字体类型?

I am using the RichTextEditor from smartGWT and it comes with 7 different fonts by default, but I would like to support ONLY 1 font type, and not 7, but the font I want to support does not come with the RichTextEditor. How can I set the supported font types from the RichTextEditor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪异←思 2024-10-16 20:10:07

似乎他们没有在 RichTextEditor API 中公开大部分功能,但我相信可以通过执行以下操作来实现:

RichTextEditor rte = new RichTextEditor();
// remove the font controls
rte.setControlGroups("formatControls", "styleControls", "colorControls");
// set the base font for the editor, could also be done with a <span> tag
rte.setValue("<font face="Bookman Old Style, Book Antiqua, Garamond"></font>");

It seems that they don't expose much of that functionality in the RichTextEditor API, however I believe it could be achieved by doing the following:

RichTextEditor rte = new RichTextEditor();
// remove the font controls
rte.setControlGroups("formatControls", "styleControls", "colorControls");
// set the base font for the editor, could also be done with a <span> tag
rte.setValue("<font face="Bookman Old Style, Book Antiqua, Garamond"></font>");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文