Most voted "summernote" questions
Summernote is a Javascript library to help create WYSIWYG editors. It supports Bootstrap3.
Learn more…14 questions
Sort by count of
-
5
votes2
answers887
viewsHow to insert text at cursor position?
How can I insert text at the position of a cursor? the field is a contenteditable so it can contain in addition to normal html css text and images. I took the example in the plugin documentation:…
-
2
votes1
answer144
viewsTextarea with disable does not break the line automatically
Follows code (with disable): $('#summernote').summernote({ toolbar: false, height: 100, callbacks: { onInit: function() { $('#summernote').summernote('disable'); $('#summernote').summernote('code',…
-
1
votes0
answers68
viewsSummernote - How to display full screen outside the modal?
I use this plugin: https://summernote.org/ Follow code in jsfiddle: https://jsfiddle.net/9rnj8rdo/ When I click "full screen", it gets full screen inside the modal. I want it to be full screen…
-
0
votes1
answer98
viewsHow to recover the functions of a cloned editor?
I’m dynamically adding the summernote down in green. I’m actually cloning the ones above. Of course I’d have a problem with that otherwise it wouldn’t be programming. The functions of the added…
-
0
votes0
answers40
viewsHow to prevent copying styles and drag 'n drop in Summernote?
When I copy something into Summernote, everything that was at the origin of the copy (images, styles, etc.) goes. Is there any way to stop it?
-
0
votes1
answer225
viewsHow to configure the Summernote editor to display a web page within the window?
Good morning, wanted a little help and tips to make the summernote text editor open a web page, for example on a page I am typing HTML normally and with clicked to see the code, would appear the…
-
0
votes1
answer51
viewsSummernote error while removing Bold
I’m using Summernote with these settings : $('#editor1').summernote({ toolbar: [ ['custom', ['comment']], ['style', ['style']], ['font', ['bold', 'underline', 'clear']], ['fontname', ['fontname']],…
-
0
votes1
answer524
viewsValidate textarea field with summernote and php
We’re using summernote in a project with Bootstrap. It’s like this: HTML is that way: <textarea class="md-form-control md-static" id="summernote" name="Mensagem" rows="18" ></textarea>…
-
0
votes1
answer741
viewsSummernote post WYSIWYG in PHP does not take HTML
I have a field textarea using Summernote WYSIWYG, I’m doing a post for a php page. but the post takes only text, the HTML tags it does not load to the post. Below I have the html that contains the…
-
0
votes1
answer69
viewsCall JS loading Toolbar in place it shouldn’t - SUMMERNOTE
I believe I am very bad with js and its derivatives. But I will try to detail to the maximum my error. I have a navbar with two options. <ul class="nav nav-tabs" data-tabs="tabs"> <li…
-
0
votes0
answers84
viewsHow to remove summernote style
Hello, I’m using summernote and putting a width on a div only when I save my style just disappear and it puts another one in place. I will send photo and also my html code. <div class="div-btn"…
-
0
votes2
answers49
viewsText-Align in table with MPDF
Good evening, everyone. I am using summernote to create/manage texts, and Gero pdf using the MPDF library. However the alignments, (left, center and right), when used from the cells of a table, are…
-
-1
votes1
answer909
viewsIs there an image upload plugin for Summernote?
I want to use Summernote and I need to upload images, but I do not know how to do, there is some plugin for this (free preference or with accessible value)?
-
-4
votes1
answer69
viewsHow do I bring an HTML code stored in the Mysql database and print it on screen using MVC Express Node.js Project?
I want to print this code that is stored in the database in my project. And this is coming up instead of the code Here is the DAO providing the database information Here is the CONTROLLER that makes…