|
反馈BUG
程序版本: |
FineUI v4.1.3 |
浏览器: |
Chrome Firefox |
BUG截图: |
|
BUG地址: |
- |
按照官网上整合富文本编辑器的例子,整和kindeditor出现问题。我是ContentPanel里放kindeditor,运行页面,发现不能输入文字,需要手动全屏kindeditor再取消全屏才可以输入文字。
代码如下:
<body>
<form id="form1" runat="server">
<fageManager runat="server" />
<f:ContentPanel runat="server">
<asp:TextBox runat="server" ID="Editor" Width="725px" Height="450px" TextMode="MultiLine"
Style="visibility: hidden;"></asp:TextBox>
<asp:TextBox runat="server" ID="tb1" TextMode="MultiLine"></asp:TextBox>
</f:ContentPanel>
</form>
</body>
</html>
<link href="kindeditor/themes/default/default.css" rel="stylesheet">
<link href="kindeditor/plugins/code/prettify.css" rel="stylesheet">
<script src="kindeditor/kindeditor.js" charset="utf-8"></script>
<script src="kindeditor/lang/zh_CN.js" charset="utf-8"></script>
<script src="kindeditor/plugins/code/prettify.js" charset="utf-8"></script>
<script>
var editor;
KindEditor.ready(function (K) {
editor = K.create('#<%=Editor.ClientID%>', {
items: ['source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage',
'flash', 'media', 'insertfile', 'table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
'anchor', 'link', 'unlink'],
cssPath: 'kindeditor/plugins/code/prettify.css',
uploadJson: 'kindeditor/asp.net/upload_json.ashx',
fileManagerJson: 'kindeditor/asp.net/file_manager_json.ashx',
allowFileManager: true,
});
editor.fullscreen(true);
editor.fullscreen(false);
editor.focus();
prettyPrint();
});
function getValue() {
// 同步数据后可以直接取得textarea的value,FineUI框架 button提交时先调用
editor.sync();
}
</script>
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|