function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Archana BattaArchana Batta 

Freeze visual force page

Hi,

I want to freeze the visualforce page on button click. I am using "apex:actionFunction" to call my controller method. I want to freeze the page and display loading icon until my controller method process is completed.

Please note: My VF page is wrapped in another VF page. So, i cant use "apex:facet"
MagulanDuraipandianMagulanDuraipandian
Check this action status - http://www.infallibletechie.com/2014/03/simple-action-status-in-salesforce.html
Archana BattaArchana Batta
I cant use this, as i have apex:inputfile tag. And when i use "status & reRendered" attributes in my apex:actionfunction, it throws an error saying "apex:inputFile can not be used in conjunction with an action component, apex:commandButton or apex:commandLink that specifies a rerender or oncomplete attribute.".

Any other ways to achieve this, like JS/JQuery?