I have a form that works fine until I add a RichTextItem. It has different effects in different browsers but none of them like it much. On the mac it causes Firefox to hang and in Safari it appears to work but always returns a value of null for the edited text. On Windows it causes both Firefox and IE to hang. The ones that hang do so when the form is first displayed, before any record is selected for editing in the form. If I remove the RichTextItem all work fine. The code is quite simple.
RichTextItem description = new RichTextItem("DESCRIPTION");
description.setHeight(200);
And then I include it in the list of fields on form.setFields().
Any known issues? Is there an alternative editor that plays well with SmartGWT?
RichTextItem description = new RichTextItem("DESCRIPTION");
description.setHeight(200);
And then I include it in the list of fields on form.setFields().
Any known issues? Is there an alternative editor that plays well with SmartGWT?
Comment