TinyEditor.Text don't work in Firefox

0
0

Hi,

as write in subject:

.Text property of TinyEditor (not TinyMCE) don’t work in Firefox, it return always empty

best

Cristian

  • You must to post comments
0
0

Hi Alaa,

the problem is to GET the text. not to SET 🙂

the property .text do not RETURN the input text with firefox

best

  • Alaa (ITG)
    Hi Cristian, I’ve just double checked and getting the text works fine (tested with the blur event too). We had this bug but it was fixed. Are you sure you have the latest build of the extension? If it’s true and you still have this issue can you please tell us what version of Wisej you’re currently using? Thanks, Alaa.
  • You must to post comments
0
0

Hi Cristian,

I’ve just tested the blur event with Firefox and it works fine.

You can try adding the event directly from the ClientEvents property of the Page or Window that hosts the TinyEditor widget.

I’ve attached a picture that shows a small example.

Let me know if it worked fine for you.

Best regards,

Alaa

Attachment
  • You must to post comments
0
0

Hi Alaa,

yes before open this post I have download the last extension from github. The problem in Firefox is not fixed.

In Firefox ‘blur’ don’t work

  • You must to post comments
0
0

Hello Cristian,

Sorry for the delayed response, are you still having issues with the TinyEditor extension on Firefox?

If you still have an issue please make sure to update the extension from our GitHub repository: iceteagroup/wisej-extensions: Extensions to Wisej. See https://wisej.com. (github.com) .

Best regards,
Alaa

  • You must to post comments
0
0

as workaround I added this to init 🙁

if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1) {
this.editor.e.body.addEventListener("input", function () {
var newText = me.getText();
if (savedText != newText) {
me.setDirty(true);
savedText = newText;
}});
};

I hope for a better solution

 

  • You must to post comments
0
0

blur event is not supported in Firefox?

  • You must to post comments
Showing 6 results
Your Answer

Please first to submit.