You need to sign in to do that
Don't have an account?

actionStatus not working without reRender on actionSupport
Hello everyone
I would want to ask you, if it's possible, the actionStatus to be triggered without the attribute rerender on actionSupport?
Example:
<apex:inputFile id="file_test" value="{!att.Body}" filename="{!att.Name}" rendered="{!showFile}" /> <apex:actionSupport event="onchange" action="{!upload}" status="loadingstatus" rerender="loadingstatus"/> <apex:actionStatus id="loadingstatus"> <apex:facet name="start" > <img src="{!URLFOR($Resource.loading)}" /> </apex:facet> </apex:actionStatus>In this case, the acionStatus is working, but if I delete the reRender attribute on actionSupport, then it's not working. I don't want to use reRender, because inputFile is not working in conjunction with rerender attribute :)
Let me know if any of this works, otherwise I have a JS soln for inputFile upload with is more reliable