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
Sourabh Tayal 14Sourabh Tayal 14 

after select Picklist field value in sf1 from custom vfpage, page is getting refesh.


I create a custom vf-page and have some picklist fields on it and using this page in SF1.

So whenever i select a value from picklist field a pop-up comes up in sf1 in iphone5, after select value from that pop-up my custom page gets refresh and it takes control to top of page while this page is working good in normal salesforce.

Is there any idea or solution fo this issue.

User-added image 
sandeep sankhlasandeep sankhla
Hi Sourabh,

It would be good if you can share your page code, so I can help you..
Sourabh Tayal 14Sourabh Tayal 14
Hi Sandeep,

Here is the code:

<apex:form id="demo1">
<apex:inputfield value="{!FcObj.Fields1__c}"/>
<apex:inputfield value="{!FcObj.Fields2__c}"/>
<apex:inputfield value="{!FcObj.Fields3__c}"/>
<apex:inputfield value="{!FcObj.Fields4__c}"/>
<apex:inputfield value="{!FcObj.Fields5__c}"/>
<apex:inputfield value="{!FcObj.Fields6__c}"/>
<apex:inputfield value="{!FcObj.Fields7__c}"/>
<apex:inputfield value="{!FcObj.Fields8__c}"/>
<apex:inputfield value="{!FcObj.Fields9__c}"/>
<apex:inputfield value="{!FcObj.Fields10__c}"/>
<apex:inputfield value="{!FcObj.Fields12__c}"/>
<apex:inputfield value="{!FcObj.Fields11__c}"/>
<apex:inputfield value="{!FcObj.Status__c}"/>
<apex:inputfield value="{!FcObj.Fields12__c}"/>
<apex:inputfield value="{!FcObj.Fields13__c}"/>
<apex:inputfield value="{!FcObj.Fields14__c}"/>
<apex:inputfield value="{!FcObj.Fields15__c}"/>
<apex:inputfield value="{!FcObj.Fields16__c}"/>
</apex:form>

My vf-page's height is so long because i am displying many other fields also, and picklist fields those i have at bottom creating this issue.

For better regenrate this issue try to access a vf-page on iphone, you will fell same issue.