0
I have a page that carries a modal bootstrap. Within Modal there is a textarea with ckeditor. The problem when I try to add a table for example, I click on the add table icon it opens the dialog window, but I can not click on the inputs only in the selects
<div class="modal fade" id="editarDocumento" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<form action="#" method="POST">
<div class="modal-header">
<h5 class="modal-title"></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Fechar">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="form-group font-poppins">
<textarea id="editor1" class="form-control ckeditorActive"></textarea>
</div>
</div>
<div class="modal-footer">
<span>
<div class="d-flex justify-content-end">
<div class="spinner-border text-danger" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</span>
<div class="btn-modal">
<a href="#" id="" class="btn btn-primary saveAnexo">Salvar</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Fechar</button>
</div>
</div>
</form>
</div>
</div>
Here I call the ckeditor
<script src="/ckeditor/ckeditor.js" type="text/javascript"></script>
<script type="text/javascript">
CKEDITOR.replace('editor1', {
uiColor: '#FDFDFD',
removePlugins: 'resize',
contentsCss: ['body {width: auto; height: auto; padding: 0; font-family: "calibri";}'],
toolbar: [{
name: 'clipboard',
items: ['PasteFromWord', '-', 'Undo', 'Redo']
},
{
name: 'basicstyles',
items: ['Bold', 'Italic', 'Underline', 'Strike', 'RemoveFormat', 'Subscript', 'Superscript']
},
{
name: 'links',
items: ['Link', 'Unlink']
},
{
name: 'paragraph',
items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote']
},
{
name: 'insert',
items: ['Image', 'Table']
},
{
name: 'editing',
items: ['Scayt']
},
'/',
{
name: 'styles',
items: ['Format', 'Font', 'FontSize']
},
{
name: 'colors',
items: ['TextColor', 'BGColor', 'CopyFormatting']
},
{
name: 'align',
items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']
},
{
name: 'document',
items: ['Print', 'PageBreak', 'Source']
}
],
});
</script>
according to the image there, I can not click on the inputs to edit, only in the selects, which can be?