Questions tagged [froala]

Froala is a commercial jQuery based WYSIWYG text editor built with the latest technologies and industry trends in mind.

Froala is a commercial jQuery based WYSIWYG text editor built with the latest technologies and industry trends in mind. It boasts high performance and full cross-browser, cross-platform support for all standard WYSIWYG features as well as being highly customisable in any web application. As stated in the official website, Froala has several plugins for many development frameworks, such as , , , , and .

Resources

Licence

A licence is require to use this software in both commercial and open-source environments - exemptions offered to educational institutes and not-for-profit organisations. Full details may be found on their FAQ.

460 questions
3
votes
1 answer

Meteor froala:editor-reactive save on change of data

I have Meteor project which uses the froala:editor-reactive package in order to set the user's about me field. Here is my template js code: Template.profile.helpers({ getAbout: function() { return Meteor.user().profile.about; }, doSave:…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
3
votes
2 answers

"froala" Editor Removing html tag attributes

I am using "froala" Editor for changing inline text,here is the link Every thing is working fine except it removing the div/p/span etc attributes. here is my function $('div#eg-custom-toolbar').editable({ inlineMode: false, buttons:…
Rahul
  • 440
  • 7
  • 24
3
votes
1 answer

How do you make the meteorjs reactive-froala editor update when its value changes?

I'm using meteorjs and the froala-reactive editor. In my router I return the collection data to the template, which works fine. But I need the ability to update the contents of editor. What is the best way to update _value? The template code: {{>…
fdtest
  • 31
  • 2
3
votes
2 answers

How to reset the states of (UNDO & REDO) button on froala editor

Hi i am using froala editor to save html for each stages .. consider there are three stages.. A,B and C .. Froala editor is only one $('#txt_blog_editor').editable({ }); The div is same for all the three stages as stages can be created…
Vaibs_Cool
  • 6,126
  • 5
  • 28
  • 61
2
votes
1 answer

Can't precompile assets from Froala Editor on Heroku

I tried to deploy on Heroku a version of my RoR app with wysiwyg-rails gem. When deploying, I have this error message. remote: -----> Installing node-v12.16.2-linux-x64 remote: -----> Detecting rake tasks remote: -----> Preparing app for Rails asset…
Defoncesko
  • 657
  • 5
  • 25
2
votes
0 answers

Tribute was already bound to BODY Wysiwyg editor?

Using Froala tribute js Error:- Tribute.js:159 Tribute was already bound to BODY When I am using froala fullPage.. And I have read the documentation as well and there is nowhere to mention this problem. The error is coming only when I am adding…
Dev 1
  • 77
  • 6
2
votes
0 answers

Change text color icon color to selected color Froala Editor

In FroalaEditor, I am trying to create an option to change text color using the inline toolbar. Here is the example I have done so far: https://jsfiddle.net/moviecrew/ph7au4v5/ new FroalaEditor('div#froala-editor', { toolbarInline: true, …
Lucian
  • 1,715
  • 3
  • 17
  • 26
2
votes
1 answer

Froala Editor Plugins using React Typescript

I am trying to add a custom plugin to a Froala Editor in my React app using the package react-froala-wysiwyg. I am following this tutorial on how to add a custom popup/plugin. The problem I am having is that the app is written in typescript and a…
2
votes
3 answers

Froala 3.1.1 + Angular 9 Plugins not Loading

According to the documentation found at (https://github.com/froala/angular-froala-wysiwyg) the installation process is straight forward and the basic editor works well. Unfortunately none of the plugins are loaded or working. From what I can see the…
leonardseymore
  • 533
  • 5
  • 20
2
votes
1 answer

Upgrading Froala from 2.9.2 to 3.1.1 throws exception: "Cannot use 'in' operator to search for 'defaultView' in undefined"

When I execute below code lines it throws exception in the console on executing (new FroalaEditor). Code: $.fn.validateFroalaChange = function () { var $obj = $(this); new FroalaEditor($obj, { events: { 'contentChanged': function ()…
2
votes
1 answer

Froala editor, rename the file while upload

Currently I'm using the froala editor with Angular and upload the file using AWS S3 service. I want to rename the file before its upload to S3. So I use the event which is already present in froala, which is 'file.beforeUpload' I'm getting the…
2
votes
0 answers

Element is not defined error while importing plugins js file in React

When i try to import the plugins js file froala-editor/js/plugins.pkgd.min.js i get the error as shown in the attached screenshot
2
votes
0 answers

How do i create Image with text button

I am using a froala custom editor and want to be able to create a custom menu item with a font and image vs one or the other. The editor allows one to specify and register a custom template. Below is a sample of…
NoSoup4you
  • 640
  • 1
  • 10
  • 34
2
votes
1 answer

Double quote issue in Object in Angular Component File

I have a component in this case its froala editor which allows you to create custom drop downs. to do so it takes an object in the format of // Options for the dropdown. options: { 'opt1': 'Option 1', 'opt2': 'Option 2' }, i am using…
MisterniceGuy
  • 1,646
  • 2
  • 18
  • 41
2
votes
0 answers

Froala Editor - Converting image to base64 and sending email using nodemailer. For bigger images it is not working

we have a licensed version of froala. And we are trying to send the editor content as RTF mail. Right now there is no option to get the content as RTF. Froala is giving it as HTML. So we are using image.beforeUpload method and converting the image…