Я установил редактор Summernote, и он выглядит так, как должен, но когда я нажимаю кнопку Отправить, он не сохраняет мои изменения.
Вот мой сценарий:
$(document).ready(function () {
$('#summernote').summernote({
height: 300, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
focus: true // set focus to editable area after initializing summernote
});
$('.dropdown-toggle').dropdown()
});
Вот мой html/erb
:
<div class="control-label col-sm-2" id="summernote">
<%= f.label :description %>
</div>
<div class="col-sm-8" id="summernote">
<%= f.text_area :description, rows: 10, class: "form-control", placeholder:
"Description of article" %>
</div>
Нижняя текстовая область работает, но новая текстовая область Summernote с Description
в ней не обновляет статью при нажатии кнопки. Пожалуйста, дайте мне знать, что мне не хватает.