[seam-commits] Seam SVN: r8178 - branches/Seam_2_0/examples/jee5/booking/view.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Tue May 13 13:15:07 EDT 2008
Author: jbalunas at 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"/>
More information about the seam-commits
mailing list