• Dilip Singh 1
  • NEWBIE
  • 10 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 5
    Replies
Hello Friends,
I have developed an app using salesforce1 with visualforce pages, It's taking too long time to load on iPad, while it's working fine on browser.. Initialy it's showing 40 to 60 seconds blank screen. Before the week it was working fine what may be the issue please help me.
Hello friends,
I was facing blank page issue in salesforce1 iOS for long terms yesterday salesforce emailed me update below (I am using visualforce pages).
Known Issues · Fixed
Visualforce page goes blank in the Salesforce1 iOS & Android app
Known Issues · Releases · Winter '16 Patch 9.4
for more follow url : https://success.salesforce.com/issues_view?id=a1p300000008Y6nAAE


When I removed below script got same blank issue
 <script>
    (function(){try{var a=navigator.userAgent;
        if((a.indexOf('Salesforce')!=-1)&&(a.indexOf('iPhone')!=-1||a.indexOf('iPad')!=-1)&&(a.indexOf('OS')!=-1||a.indexOf('OS')!=-1)&&(a.indexOf('Safari')==-1)){
        var s=document.createElement('style');
        s.innerHTML="html,html body{overflow: auto;-webkit-overflow-scrolling:touch;}body{position:absolute;left:0;right:0;top:0;bottom:0;}";
        document.getElementsByTagName('head')[0].appendChild(s);}}catch(e){}})();
    
    </script>
I am using developer account.
from iPad I remove salesforce1 and upload again and remove above script faced same issue..
How can I update above release patch (9.4) in my app please help me..
Hello friends,
I was facing blank page issue in salesforce1 iOS for long terms yesterday salesforce emailed me update below (I am using visualforce pages).
Known Issues · Fixed
Visualforce page goes blank in the Salesforce1 iOS & Android app
Known Issues · Releases · Winter '16 Patch 9.4
for more follow url : https://success.salesforce.com/issues_view?id=a1p300000008Y6nAAE


When I removed below script got same blank issue
 <script>
    (function(){try{var a=navigator.userAgent;
        if((a.indexOf('Salesforce')!=-1)&&(a.indexOf('iPhone')!=-1||a.indexOf('iPad')!=-1)&&(a.indexOf('OS')!=-1||a.indexOf('OS')!=-1)&&(a.indexOf('Safari')==-1)){
        var s=document.createElement('style');
        s.innerHTML="html,html body{overflow: auto;-webkit-overflow-scrolling:touch;}body{position:absolute;left:0;right:0;top:0;bottom:0;}";
        document.getElementsByTagName('head')[0].appendChild(s);}}catch(e){}})();
    
    </script>
I am using developer account.
from iPad I remove salesforce1 and upload again and remove above script faced same issue..
How can I update above release patch (9.4) in my app please help me..

Hi Guys,
I am facing problem in soql injection, I have written a query to fetch Account data with condtion Name like bellow.
string queryString='select id,name,billingstreet from account'
if (AccountName != null && !AccountName.equals(''))    {
              AccountName= '%' + AccountName + '%';  
              queryString += ' Where Name LIKE :AccountName ';
     }
I have passed parameter % it's return all the account even I used String.escapeSingleQuotes(AccountName) as below
if (AccountName != null && !AccountName.equals(''))    {
              AccountName= '%' + String.escapeSingleQuotes(AccountName) + '%';  
              queryString += ' Where Name LIKE :AccountName ';
     }
Even it's return all account,

How can we resolve this Injection problem..
Thanks.

Hi Guys,
I am using salesforce1 mobile app,many user point a problem related navigation, when we navigate from hone page to another pages after clicking of any link of home, the side tapping menu button disappeared and see only back menu. When we are testing it on our browser https://xy23.salesforce.com/one/one.app it working fine. what may be the exact reason it is not appears in salesforc1 moblie app..
after navigation from home page in mobile app..
Mobile navigation after clicking from home page
Expected to show like
expected navigation
Hello Friends,
I have developed an app using salesforce1 with visualforce pages, It's taking too long time to load on iPad, while it's working fine on browser.. Initialy it's showing 40 to 60 seconds blank screen. Before the week it was working fine what may be the issue please help me.
Hello friends,
I was facing blank page issue in salesforce1 iOS for long terms yesterday salesforce emailed me update below (I am using visualforce pages).
Known Issues · Fixed
Visualforce page goes blank in the Salesforce1 iOS & Android app
Known Issues · Releases · Winter '16 Patch 9.4
for more follow url : https://success.salesforce.com/issues_view?id=a1p300000008Y6nAAE


When I removed below script got same blank issue
 <script>
    (function(){try{var a=navigator.userAgent;
        if((a.indexOf('Salesforce')!=-1)&&(a.indexOf('iPhone')!=-1||a.indexOf('iPad')!=-1)&&(a.indexOf('OS')!=-1||a.indexOf('OS')!=-1)&&(a.indexOf('Safari')==-1)){
        var s=document.createElement('style');
        s.innerHTML="html,html body{overflow: auto;-webkit-overflow-scrolling:touch;}body{position:absolute;left:0;right:0;top:0;bottom:0;}";
        document.getElementsByTagName('head')[0].appendChild(s);}}catch(e){}})();
    
    </script>
I am using developer account.
from iPad I remove salesforce1 and upload again and remove above script faced same issue..
How can I update above release patch (9.4) in my app please help me..

Hi Guys,
I am facing problem in soql injection, I have written a query to fetch Account data with condtion Name like bellow.
string queryString='select id,name,billingstreet from account'
if (AccountName != null && !AccountName.equals(''))    {
              AccountName= '%' + AccountName + '%';  
              queryString += ' Where Name LIKE :AccountName ';
     }
I have passed parameter % it's return all the account even I used String.escapeSingleQuotes(AccountName) as below
if (AccountName != null && !AccountName.equals(''))    {
              AccountName= '%' + String.escapeSingleQuotes(AccountName) + '%';  
              queryString += ' Where Name LIKE :AccountName ';
     }
Even it's return all account,

How can we resolve this Injection problem..
Thanks.