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
Max PaqMax Paq 

Visual Flow date field bug

Hi everyone,

I was hoping someone would have an answer to a bug I am seeing in the Salesforce1 app.

I created a flow with a date field and created a VF page to host the flow. Everything works fine but when accessing the page in the Salesforce1 mobile app I see a random calendar at the bottom of the screen. I know this is linked to my date field but I can't figure out how to remove it from there.

thank you for your help,

Max

random calendar 
Andy BoettcherAndy Boettcher
Ahhhh the Salesforce non-mobile-friendly datepicker.  You MAY be able to mop it up by messing around with some Javascript/jQuery in the parent VF page by inspecting that element and trying to hide it.

Anyone else reading this been successful another way?
Prosenjit Sarkar 7Prosenjit Sarkar 7
Hi Max & Andy, 
I use one shortcut solution using showDatePicker attribute. It helps to remove the link in mobile devices 
<apex:inputField value="{!value_Field__c}" type="date" showDatePicker="false" / >