Author: jbalunas(a)redhat.com
Date: 2008-05-13 13:15:06 -0400 (Tue, 13 May 2008)
New Revision: 8178
Modified:
branches/Seam_2_0/examples/jee5/booking/view/main.xhtml
Log:
JBSEAM-2592, JBSEAM-2964 - Helps a problem where entering values in the hotel search input
box results in concurrent EJB call errors. This may not actually be concurrent calls but
the errors state that.
Modified: branches/Seam_2_0/examples/jee5/booking/view/main.xhtml
===================================================================
--- branches/Seam_2_0/examples/jee5/booking/view/main.xhtml 2008-05-13 12:45:40 UTC (rev
8177)
+++ branches/Seam_2_0/examples/jee5/booking/view/main.xhtml 2008-05-13 17:15:06 UTC (rev
8178)
@@ -20,7 +20,9 @@
<h1>Search Hotels</h1>
<fieldset>
<h:inputText id="searchString"
value="#{hotelSearch.searchString}" style="width: 165px;">
- <a:support event="onkeyup"
actionListener="#{hotelSearch.find}" reRender="searchResults" />
+ <a:support event="onkeyup"
actionListener="#{hotelSearch.find}" reRender="searchResults"
eventsQueue="searchQueue">
+ <s:conversationId/>
+ </a:support>
</h:inputText>
 
<a:commandButton id="findHotels" value="Find Hotels"
action="#{hotelSearch.find}" reRender="searchResults"/>
Show replies by date