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
ram123ram123 

apex:actionSupport event

will action support event support multiple event  like event="onkeypress,onmouseout" ?

 

<apex:inputText Id="Price" styleClass="on24BigTextField" value="{!Event}">
      <apex:actionSupport event="onkeypress,onmouseout" rerender="detail" action="{!refresh}" />
</apex:inputText>

 

Thanks

Ram

 

ram123ram123

The following works for multiple events, so ignore my previous post

 

<apex:inputText id="Quantity" styleClass="BigTextField" value="{!quantity}" >
<apex:actionSupport event="onkeypress" rerender="detail" action="{!refresh}" />
<apex:actionSupport event="onmouseover" rerender="detail" action="{!refresh}" />
</apex:inputText>