Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Umair Tariq on Aug 28, 2009 23:36
open dhtmlx forum
DHTMLX EDITOR

Hi.
I am using dhtmlx editor.
I am using two divs. First div contain the list of persons(to choose persons for send email) and the second div contain dhtmlx editor. I have two buttons to swap between these divs. When I swap between these divs than dhtmlx editor stop working properly (I cannot edit content of editor properly) in firefox browser. (In simple when i hide and show the div that contain dhtmlx editor div than dhtmlx editor stop working properly in firefox browser.) It works fine in IE browser.

I am using following approach to hide and show divs.

    document.getElementById(id).style.display = "block";
    document.getElementById(id).style.display = "none";

Regards
Umair Tariq
Xeeonix tech.
Answer posted by Alex (support) on Aug 31, 2009 07:33

Hello, 

try to call following method after document.getElementById(id).style.display = "block" to solve the issue:

if (!_isIE) editor._prepareContent(true);
editor.setSizes();


Answer posted by Umair on Sep 01, 2009 04:37
It did not work. Please Send some other solution.
Regards
Umair Tariq
Xeeonix Tech.
Answer posted by Alex (support) on Sep 01, 2009 06:41
Locally, this appoach works. Please, see sample with latest editor version (2.5 beta)
Attachments (1)
Answer posted by Umair Tariq on Sep 02, 2009 01:17
Hi.
The sample attached works locally but when I replace the codebase of my project with attached samples codebase it does not work properly (The icons of editor disappears and size of editor shrinks).

Regards
Umair Tairq

Answer posted by Alex (support) on Sep 02, 2009 02:14

Hello,

please, check that define path to editor icons:

dhtmlx.image_path = "codebase/imgs/";

and all other paths are correct. 

If issue still occurs, please provide any sample to recreate it.

Answer posted by Umair Tariq on Sep 02, 2009 03:19
Hi
I have done it. I was missing to including all editor files mention in sampleapplication in my code and was not setting the image path as you set in the sample application. It work fine.
Thanks
Umair Tariq
Xeeonix Tech.