Integrating with Summernote

This example shows how to use FormValidation with Summernote plugin.
You should look at the basic principle when integrating FormValidation with 3rd party libraries
You have to revalidate the editor field when it's changed by Summernote:
$('[name="content"]')
.summernote({
height: 400,
})
.on('summernote.change', function (customEvent, contents, $editable) {
// Revalidate the content when its value is changed by Summernote
fv.revalidateField('content');
});
Integrating with Summernote

See also