SurendraKumar Jaiswal
SurendraKumar Jaiswal

Reputation: 192

IFrame method .getBody returns null

I am using CKEditor in GWT project, Where i am using 4 CKEditor into single UI. On change of dropDown am changing values of thod CKEditor textFields.

IFrameElement iframe = (IFrameElement) element;
iframe.getContentDocument().getBody().setInnerText(value);

Here iframe.getContentDocument() returns Document , But iframe.getContentDocument().getBody() reutrns null.

Where on first two ckeditor iframe.getContentDocument().getBody() , they perfectly working, but for the next two, iframe.getContentDocument().getBody() reutrns null. Hence getting error

Uncaught TypeError: Cannot set property 'textContent' of null at DOMImplWebkit_1_g$.setInnerText_2_g$ [as setInnerText_6_g$]....

Upvotes: 2

Views: 127

Answers (1)

Aakash Patel
Aakash Patel

Reputation: 557

I hope you are somewhere setting value as blank ("") for handling null pointer issues.

Upvotes: 2

Related Questions