Opened 17 years ago

Closed 17 years ago

#776 closed Bug (duplicate)

Firefox: focus problem

Reported by: anonymous Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: SF Cc: liane@…

Description (last modified by Martin Kou)

I have create a DIV element whice includes the FCKeditor. This DIV element is flipable. On the pageload the DIV element is hidden with the CSS attribute "display: none;". When I flip the DIV element to visible ("display: block;") I can't focus the FCKeditor to write my text. I can interact with the toolbar elements and width the right-click menu but I can't write something.

On IE6.0 I can focus everything, but not on Firefox. I hope you can solve the problem - I need this feature :D

===================================================

Source code:

===================================================
# JAVASCRIPT:

function flip(id)
{
if(document.getElementById(id).style.display == "none")
{
document.getElementById(id).style.display = "block";
}
else
{
document.getElementById(id).style.display = "none";
}
}

# HTML:

[ &bull; <a
href="javascript:flip('answerFCK');">Answer</a> ]<br />
<div id="answerFCK" style="display: none;">
<br />
<form action="someURL" method="post" name="fanswer">
{editor}<br />
<br />
<input type="submit" value="Send" />
</form>
</div>

Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1561954&group_id=75348&atid=543653

Change History (2)

comment:1 Changed 17 years ago by Martin Kou

Cc: liane@… added
Description: modified (diff)
Reporter: changed from Martin Kou to anonymous

already reported a few lines below:

http://sourceforge.net/tracker/index.php?func=detail&aid=1550520&group_id=75348&atid=543653


Moved from SF. Original poster: liane

comment:2 Changed 17 years ago by Alfonso Martínez de Lizarrondo

Resolution: duplicate
Status: newclosed

This is a dup of #321

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy