Well - according to some net browsing - the responsability for this odd
behavior is of the RealPlayer Browser Record plugin.
After disabling it - everythings runs as expected.
Btw, there was nothing apparently wrong with submitForm. Calling
form.submit() had simply no followup, while PPR still worked.
-- Renzo
Renzo Tomaselli wrote:
Hi, for the purpose of saving a document on a page, I used
tr:fileDownloadActionListener such as in:
<tr:commandLink id="blobSave">
<tr:icon name="bitconsSave"/>
<tr:fileDownloadActionListener filename="#{prop.blobName}"
contentType="application/octet-stream"
method="#{prop.blobSave}"/>
</tr:commandLink>
where contents are achieved from the bean:
public void blobSave(FacesContext context, OutputStream out)
throws IOException {
byte[] v = ((BlobRow)value).getValue();
out.write(v);
}
everything works fine on IE, while on FF it runs just once: after
saving (or cancelling), all buttons featuring onclick="submitform ..."
are blocked forever, while buttons marked for partialSubmit
(onclick="TrPage._autoSubmit...") work properly. Then other buttons
are enabled again, but using the above link once the game restarts.
No errors. I'm using Trinidad 1.05. I'm about to debug the js
machinery after submitform.
-- Renzo