作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
必须有一种简单的方法来设置字体名称下拉列表的默认选定字体。我一直在 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/
我是一名优秀的程序员,十分优秀!