nicedit和jquery对话框模式的问题 - 添加链接按钮表单是不可选的

时间:2014-07-04 16:29:59

标签: jquery dialog modal-dialog nicedit

我在使用带有jquery对话框的nicedit时遇到了一些麻烦。

问题在于:

当我创建一个jquery对话框(模态)时,在open event init wysiwyg editor(nicedit) - >一切都好。 但是,如果我点击添加链接按钮,我就无法点击显示的输入。

如果我设置jquery对话框没有模态,那么效果很好。

这是我的例子:

http://jsfiddle.net/ws97R/16/

<div id="dialog" title="test" style="display:none;">
    <form><textarea id="editor"></textarea></form>
</div>
<input type="button" id="test" value="open dialog wysiwyg"/>

$('#test').click(function(){
    $('#dialog').dialog({
        width:400,
        height:400,
        modal:true,
        open: function() {
            new nicEditor({ 
                minHeight: 220, 
                maxHeight: 220, 
                buttonList: ['link', 'unlink']
            }).panelInstance('editor');
        }
    });
});

0 个答案:

没有答案