Thanks for integrating the wysiwyg editor.
In your demo HTML Editor the contents of the wysiwyg field is not correct when pressing the back and forward buttons.
2 Answers
A quick fix could be to disable the prev / next button in form dialogs.
$grid["edit_options"] = array(
"beforeShowForm" => 'function (formid) {$("#pData").hide(); $("#nData").hide();}'
);
$grid["add_options"] = array(
"beforeShowForm" => 'function (formid) {$("#pData").hide(); $("#nData").hide();}'
);
…
$g->set_options($grid);
Your Answer