gpt4 book ai didi

asp.net - 如何在 Telerik 的 RadEditor 上设置默认字体?

转载 作者:行者123 更新时间:2023-12-04 02:30:59 25 4
gpt4 key购买 nike

必须有一种简单的方法来设置字体名称下拉列表的默认选定字体。我一直在 Telerik 网站和论坛上四处寻找,但找不到简单的方法。也许没有简单的方法,但也许我就是找不到。

这是我的 RadEditor:

      <telerik:RadEditor ID="RadEditor1" runat="server" ContentFilters="MakeUrlsAbsolute,ConvertToXhtml,RemoveScripts"
EditModes="All" EnableResize="false" Font-Bold="false" Font-Names="Arial" Font-Size="8pt"
Height="230px" MaxHtmlLength="3000" MaxTextLength="3000" NewLineMode="Br" Skin="Web20">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="ImageManager" />
<telerik:EditorSeparator />
<telerik:EditorTool Enabled="true" Name="FontName" />
<telerik:EditorTool Enabled="true" Name="FontSize" />
<telerik:EditorSeparator />
<telerik:EditorTool Enabled="true" Name="BackColor" />
<telerik:EditorTool Enabled="true" Name="ForeColor" />
<telerik:EditorTool Enabled="true" Name="Bold" />
<telerik:EditorTool Enabled="true" Name="Italic" />
<telerik:EditorTool Enabled="true" Name="Underline" />
<telerik:EditorSeparator />
<telerik:EditorTool Enabled="true" Name="Copy" />
<telerik:EditorTool Enabled="true" Name="Cut" />
<telerik:EditorTool Enabled="true" Name="Paste" />
<telerik:EditorTool Enabled="true" Name="AjaxSpellCheck" Text="Spell Check" />
</telerik:EditorToolGroup>
</Tools>
<ImageManager MaxUploadFileSize="1048576" SearchPatterns="*.jpg,*.jpeg,*.png,*.gif,*.bmp, *.ico"
UploadPaths="~/images/" ViewPaths="~/images/" />
</telerik:RadEditor>

我希望你们中的一个能告诉我!谢谢!

最佳答案

这有效:

编辑:

 <telerik:RadEditor ID="myEditor" OnClientLoad="RadEditorLoad" runat="server" ... >

处理程序:

        function RadEditorLoad(editor, eventArgs) {

// Set the Editor Default Font to Arial

editor.get_contentArea().style.fontFamily = 'Arial'
}

发现于: http://www.telerik.com/community/forums/aspnet-ajax/editor/radeditor-setting-font.aspx

关于asp.net - 如何在 Telerik 的 RadEditor 上设置默认字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12413551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com