Page 1 of 1

Loading document with hidden UI clears input-fields

Posted: Wed Sep 24, 2014 11:13 am
by mgie
I am doing some serverside processing of odt documents in Java.
Problem: When I load the file in "Hidden" mode all content of Input-Fields gets erased in the output.
So they're still there but empty. When I do the processing with the UI popping up this is not happening.

Code: Select all

Map<String, Object> props = new HashMap<String, Object>();
props.put("Hidden", true); //this causes input fields to be wiped
loader.loadComponentFromURL("file://...", "_blank", 0, props);
any idea why that happens?

best regards,

mgie

edit: it seems that not all Inputfields get cleared. I still dont see the difference between those that are and those that arent