FineUI 官方论坛

标题: 整合kindeditor问题 [打印本页]

作者: zy32002    时间: 2014-9-10 13:51
标题: 整合kindeditor问题
按照官网上整合富文本编辑器的例子,整和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>





作者: zy32002    时间: 2014-9-12 10:04
我是不知道怎么解决,是否老大有解决方法,还望告之。
作者: 每日    时间: 2015-1-24 20:31
因为extjs 加载很慢 编辑器加载完了才加载 ,这时候会失去焦点,编辑器失效,最大化后重新会重新获得焦点 请放到
Ext.onReady(function () {
}
里面执行
作者: zy32002    时间: 2015-1-24 22:11
每日 发表于 2015-1-24 20:31
因为extjs 加载很慢 编辑器加载完了才加载 ,这时候会失去焦点,编辑器失效,最大化后重新会重新获得焦点  ...

谢谢 ,我自己也做出来了,用的defer 延时加载
这是我的例子:
http://fineui.com/bbs/forum.php?mod=viewthread&tid=6683




欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/) Powered by Discuz! X3.4