Extjs 富文本编辑器的提示怎么换成中文啊,还有,默认的一个字体怎么去掉啊?
发布网友
发布时间:2022-04-24 19:27
我来回答
共2个回答
热心网友
时间:2022-04-24 20:56
设置panel的html:'<div style="height:300px;width:100%" id="uEditor"></div>'
然后render事件里面调用ueditor的方法绘制到uEditor容器里面。
AutoEventWireup="true"是增加一些特殊事件的关联。
validateRequest="false"是因为Fckeditor框内的提交的内容是HTML,所以要去掉验证提交请求的功能。
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" validateRequest="false" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server">
</FCKeditorV2:FCKeditor>
</div>
</form>
</body>
</html>