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

Visualforce Page only displays White screen in Salesforce1
Hello,
Hoping that someone can help us here! I have a VF page that is to diplay the standard Salesforce calendar in Salesforce1.
I have created the VF page(Marked it as mobile), a VF tab, and placed it in the navigation menu of Salesforce1. I also must point out that this works just fine in our dev sandbox, and this issue of just displaying a white screen is only occuirng in our production instance.
Here is the code for the VF page......does anyone have any suggestions? I am very anxious to hear any as I scoured the web and could not find any leads, so I want to turn it over to the wonderful brilliant friends here.....
<apex:page showHeader="false" sidebar="false" >
<script type="text/javascript">
window.location = "https://ap1.salesforce.com/00U/c?isdtp=mn" </script> </apex:page>
Thank you in advance for any help or suggestions you may be able to provide,
Shawn
Hoping that someone can help us here! I have a VF page that is to diplay the standard Salesforce calendar in Salesforce1.
I have created the VF page(Marked it as mobile), a VF tab, and placed it in the navigation menu of Salesforce1. I also must point out that this works just fine in our dev sandbox, and this issue of just displaying a white screen is only occuirng in our production instance.
Here is the code for the VF page......does anyone have any suggestions? I am very anxious to hear any as I scoured the web and could not find any leads, so I want to turn it over to the wonderful brilliant friends here.....
<apex:page showHeader="false" sidebar="false" >
<script type="text/javascript">
window.location = "https://ap1.salesforce.com/00U/c?isdtp=mn" </script> </apex:page>
Thank you in advance for any help or suggestions you may be able to provide,
Shawn
As the instance like ap1,na22 these keep changing based on SFDC environment and geographic location.
For now, observe what's the instance of your production environment and replace "ap1" in https://ap1.salesforce.com/00U/c?isdtp=mn with that particular instance. It should solve your problem temporarily.
Object/Field level permissions are not copied from production to sandbox and vice-versa for user profiles.
If you have tweaked those permission sets in sandbox, you need to replicate those manually in production as well.
Maybe that could be the culprit.
Here is another weird thing about this one....if I preview the VF page in Standard Salesforce, it will only display a white screen there as well, but if I deactivate the developer tools that show the VF page code so you can make changes on the fly....if I disable that, then immediately after doing so, the page laods the standard calendar as it should.
So this lead me to think there may be some java thing happening when the dev tools are running and you attempt to render the page.
Even after disabling the dev tools, on Salesforce1 the page still shows up as just a white screen, for many users and diff profiles.
So just wanted to add some additional information in case it could help to maybe jog something in any of your smart brains to suggest any help on this issue!!!
Thanks again for eberyones time and hopefully there is someone that can help us!
Shawn