[jboss-cvs] jboss-seam/examples/icefaces/view ...

Gavin King gavin.king at jboss.com
Wed Nov 29 14:17:05 EST 2006


  User: gavin   
  Date: 06/11/29 14:17:05

  Modified:    examples/icefaces/view  main.xhtml
  Log:
  make it work again (apply Ted Goddards patch)
  
  Revision  Changes    Path
  1.8       +10 -10    jboss-seam/examples/icefaces/view/main.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: main.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/icefaces/view/main.xhtml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- main.xhtml	20 Nov 2006 18:03:01 -0000	1.7
  +++ main.xhtml	29 Nov 2006 19:17:05 -0000	1.8
  @@ -44,19 +44,19 @@
   	<ice:dataTable id="hotels" value="#{hotels}" var="hot" rendered="#{hotels.rowCount>0}">
   		<h:column>
   			<f:facet name="header">Name</f:facet>
  -			<ice:outputText value="#{hot.name}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{hot.name}" onmouseovereffect="#{highlight}"/>
   		</h:column>
   		<h:column>
   			<f:facet name="header">Address</f:facet>
  -			<ice:outputText value="#{hot.address}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{hot.address}" onmouseovereffect="#{highlight}"/>
   		</h:column>
   		<h:column>
   			<f:facet name="header">City, State</f:facet>
  -			<ice:outputText value="#{hot.city}, #{hot.state}, #{hot.country}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{hot.city}, #{hot.state}, #{hot.country}" onmouseovereffect="#{highlight}"/>
   		</h:column> 
   		<h:column>
   			<f:facet name="header">Zip</f:facet>
  -			<ice:outputText value="#{hot.zip}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{hot.zip}" onmouseovereffect="#{highlight}"/>
   		</h:column>
   		<h:column>
   			<f:facet name="header">Action</f:facet>
  @@ -74,27 +74,27 @@
   	<ice:dataTable id="bookings" value="#{bookings}" var="book" rendered="#{bookings.rowCount>0}">
   		<h:column>
   			<f:facet name="header">Name</f:facet>
  -			<ice:outputText value="#{book.hotel.name}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{book.hotel.name}" onmouseovereffect="#{highlight}"/>
   		</h:column>
   		<h:column>
   			<f:facet name="header">Address</f:facet>
  -			<ice:outputText value="#{book.hotel.address}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{book.hotel.address}" onmouseovereffect="#{highlight}"/>
   		</h:column>
   		<h:column>
   			<f:facet name="header">City, State</f:facet>
  -			<ice:outputText value="#{book.hotel.city}, #{book.hotel.state}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{book.hotel.city}, #{book.hotel.state}" onmouseovereffect="#{highlight}"/>
   		</h:column>
           <h:column>
               <f:facet name="header">Check in date</f:facet>
  -            <h:outputText value="#{book.checkinDate}" onmouseovereffect="#{bookingList.effect}"/>
  +            <h:outputText value="#{book.checkinDate}" onmouseovereffect="#{highlight}"/>
           </h:column>
           <h:column>
               <f:facet name="header">Check out date</f:facet>
  -            <h:outputText value="#{book.checkoutDate}" onmouseovereffect="#{bookingList.effect}"/>
  +            <h:outputText value="#{book.checkoutDate}" onmouseovereffect="#{highlight}"/>
           </h:column>
   		<h:column>
   			<f:facet name="header">Confirmation number</f:facet>
  -			<ice:outputText value="#{book.id}" onmouseovereffect="#{bookingList.effect}"/>
  +			<ice:outputText value="#{book.id}" onmouseovereffect="#{highlight}"/>
   		</h:column>
   		<h:column>
   			<f:facet name="header">Action</f:facet>
  
  
  



More information about the jboss-cvs-commits mailing list