ajm
ajm

Reputation: 13213

FCK Editor not loading in Firefox

We have a JSP page where we have some buttons. On click of a button a jquery popup (or a dialog box) is opened. The pop up has a form in it which has a FCK editor.

When the form is submitted, the pop up is closed and the state on the JSP page is refreshed.

You can again open same pop up by clicking button on page. You can repeat this n times.

During this process, some times this FCK editor does not render on the pop up in the Firefox. i.e. If you click a button on JSP, a pop up is opened, FCK editor is not displayed at all. It shows a blank space in place of FCK editor.

It works properly in IE.

The version of the Firefox that we are testing on is 3.6.15.

The FCK editor version is 2.6.

While googling on the issue I came across following link

FCKEditor Year 2010 Bug for Firefox 3.6 with ColdFusion

Its in cold fusion though. We are using Struts 2 and JSP.

We are having this problem for lot of time now. Any hints or clues will be highly appreciated.

Upvotes: 1

Views: 636

Answers (1)

ajm
ajm

Reputation: 13213

The issue basically here in this case is that the if you try to open a from which has FCKEditor even before your page has loaded completely, the FCKEditor will not render.

I just disabled the buttons which opens the pop (which contains FCK Editor) until the page is completely loaded and once it is loaded buttons are enables.

Clicking on buttons opens the form in which FCK Editor is rendered properly now.

Upvotes: 1

Related Questions