﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
776	Firefox: focus problem	anonymous		"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:
===================================================
[[BR]]# 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:[[BR]]
http://sourceforge.net/tracker/index.php?func=detail&aid=1561954&group_id=75348&atid=543653"	Bug	closed	Normal		General		duplicate	SF	liane@…
