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
ManuManu 

Action Status not working with Remote Action Methods

Hi all,

I am calling a remote action function in the apex:commandLink and trying to show the action status as long as this execution happens...but could not...is there any solution for this? below is the code...

<apex:outputPanel layout="block">
                            <apex:actionStatus stopText="" id="myStatus">
                                <apex:facet name="start">
                                    <img src="/img/loading.gif" title="Please Wait..." />
                                     <span class="waitingDescription">Loading...</span>
                                </apex:facet>
                             </apex:actionStatus>
                         </apex:outputPanel> 
<apex:commandLink style="text-decoration:none;color:blue" value="Delete" onClick="return deleteActionHistory('{!dh.Id}')"  status="myStatus"/>

<script>
function deleteActionHistory(dhid){ 
            recordId = dhid;
            if(confirm('You are about to delete the last action history.')){
            Visualforce.remoting.Manager.invokeAction('{!$RemoteAction.controller.deleteId}',dhid,function(result, event){
                    if(event.status){
                        if(result == 'Time expired'){
                            ccb$("[id$='accessPopup']").show();
                            ccb$("[id$='accessMessage']").show();
                        }else
                            reload(); 
                    }
                });
            }
            return false;
        }

</scipt>

R - Manu
ShashankShashank (Salesforce Developers) 
Can you explain what exactly is the behavior you are seeing? May be with a screenshot if possible?