is it possible to have a input wyswyg on a textarea as summernote ? Because whan we use summernote in ressource in dashboard, the input is not transmit for update or insert because i think that the js don't know that the input change.
We try
Text::create("description")->label($this->tr->trad('description'))
->showOnIndex(true)
->inputWidget(
TextArea::create()->onClientLoading(function(){
return "
$(document).ready(function() { $('.summernote').summernote();
})->cssClass("summernote")
),
Summer note appear and work, but the data are not update because not display with print_r
Have you got a solution ? Thanks !