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
Pintu FrancisPintu Francis 

HTML Select issue in Salesforce1 Android App

<select name="name" class="Period_Name" size="1" >
  <option value="" disabled="disabled">--Select Value--</option>
  <option value="Jan-2013" selected="selected">Jan-2013</option>
  <option value="Feb-2013" disabled="disabled">Feb-2013</option>
  <option value="Mar-2013" >Mar-2013</option>
  <option value="Apr-2013" disabled="disabled">Apr-2013</option>
  <option value="May-2013">May-2013</option>
  <option value="Jun-2013">Jun-2013</option>
  <option value="Jul-2013">Jul-2013</option>
  <option value="Aug-2013">Aug-2013</option>
  <option value="Sep-2013">Sep-2013</option>
  <option value="Oct-2013">Oct-2013</option>
  <option value="Nov-2013">Nov-2013</option>
  <option value="Dec-2013">Dec-2013</option>
</select>

I have set some options as Disabled these items are still available for selction in Salesforce1 Android App, it is working fine with out any issues in Salesforce1 iphone App, ipad and web app. Issue found only in Android App (phone as well as tab).
RupaliJRupaliJ
Hi Pintu,

I am also facing same issue. When I clicked on a html select in a Visualforce page in android Salesfore1 app, select options are not displayed. Did you get any solution for this?

Thanks,
Rupali
Pintu FrancisPintu Francis
@Rupali 

I could see all the items in list, but my issues was I have set 'disabled' for some of them, idealy as per HTML defnition that option would not be allowed to select. but here in Android SF1 app, its not enforcing that restriction. It is allowing to select any option regardless of weather I set it as Disabled or not.