Login Register

dijit.Editor : "Not enough storage is available to complete this operation"

I get the following exception in the debug area when I paste text/html into the dojo 1.1 dijit.Editor under IE7:

"Not enough storage is available to complete this operation"

I'm not pasting in that much text (I assume it should support as much as a textarea does...is that right?), so what is this really saying? I don't get the error under FF1.5.

Thanks.

designMode/contentEditable

it's different than a textarea widget... it's using the contentEditable bit (or designMode, depending on the browser) to turn on rich text edit, and the browser has a different native control. That must be where the error is coming from? You can try constructing a test page with a textarea with designMode="on" and see what happens with the same paste.