到目前为止,我一直在应用程序中使用trix编辑器作为所见即所得。 现在,我已经添加了best_in_place gem进行内联编辑,我想知道是否有一种方法可以实现trix编辑器或任何其他WYSIWYG编辑器,或者由于我需要WYSIWYG,我是否必须更改最佳位置的gem作为替代方案
Integration of WYSIWYG editor to best-in-place textarea
这应该是类似的东西,但是我真的无法弄清楚。
$(document).on('best_in_place:activate', function(el) {
$(element).trix-editor();
});
似乎没有用。
谢谢!
答案 0 :(得分:0)
您应该能够做类似的事情
$(document).on('best_in_place:activate', function(el) {
// code to initialize the editor on
// $(element).editor(); ?
});