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
FastSnailFastSnail 

Actionsupport issue with iPad and Android

Hello everyone,
I cannot get actionSupport to actuate 'DoSomething' on iPad, neither on Android.  What am I missing? Thanks in advance, Jerome

<apex:selectList value="{!cou}" multiselect="false" size="1" >
<apex:selectOptions value="{!couSOList}" />
<apex:actionSupport event="onclick" action="{!doSomething}" reRender="aopNul"  />
</apex:selectList>
Best Answer chosen by FastSnail
Bill DodsonBill Dodson
Did you try using the onchange event?

All Answers

Bill DodsonBill Dodson
Did you try using the onchange event?
This was selected as the best answer
FastSnailFastSnail
Thank you Bill, I did try and it did not work, because I had another onchange() JS that was conflicting with the actionSupport; Thansk to you, I looked at this again and I am all set. Thank you again, Jerome