You need to sign in to do that
Don't have an account?
Service Cloud Console - Reload Frame Automatically?
I've had issues with my users having mutiple service cloud consoles opened. Whenever she makes an update on case status on console window A, the changes are not reflected on console window B, unless she clicks on refresh.
She was on the list view on Console Window B, clicked on the case, and the case frame did not automatically refresh if the case is already opened on another tab.
Is there a way to cause the page frame to refresh every time the user clicks on the case from the list view, regardless if it's opened on a tab or not?
I could probably write a javascript button for the case frame to reload but I want to save the user from having to do the extra click if possible.
did figure out any work around for this. If so can you pls share.
Thanks!
Did you find anything for this? Can you please let me know the solution?
Thanks!
After you click the button, the list will refresh every 5000 miliseconds.
window.setInterval(function(){
refreshIt();
}, 5000);
function refreshIt(){
javascript:ListViewport.instances['00B24000001YnBx'].refreshList();
}