You need to sign in to do that
Don't have an account?

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
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>