darshakshah1988 / gmaps4jsf

Automatically exported from code.google.com/p/gmaps4jsf
0 stars 1 forks source link

ui:repeat does not work inside of polygons or polylines #66

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
<m:polygon...>
 <ui:repeat var="loc" value="${collection}">
   <m:point lat="loc.lat" lon="loc.lon"/>
 </ui:repeat>
</m:polygon>

or

<m:polyline...>
 <ui:repeat var="loc" value="${collection}">
   <m:point lat="loc.lat" lon="loc.lon"/>
 </ui:repeat>
</m:polyline>

What is the expected output? What do you see instead?
A polygon or a polyline.
Nothing.

What version of the product are you using? On what operating system?
Latest. Windows XP with Firefox/IE.

Please provide any additional information below.

Original issue reported on code.google.com by brent.fr...@gmail.com on 6 Aug 2009 at 3:31

GoogleCodeExporter commented 8 years ago
Now <ui:repeat> works with polylines and polygons at 1.1.3 snapshot.

Original comment by Hazem.sa...@gmail.com on 16 Aug 2009 at 1:01

GoogleCodeExporter commented 8 years ago
When do you expect to put a 1.1.3 jar to be downloadable? Fixing the issue 
addressed
above would be very helpful in the project I`m working on.
Best regards

Original comment by goleb...@gmail.com on 24 Aug 2009 at 7:49

GoogleCodeExporter commented 8 years ago
check this snapshot jar:
http://gmaps4jsf.googlecode.com/files/GMaps4JSF_Facelets_1.1.3_August_2009_SNAPS
HOT.war

Original comment by Hazem.sa...@gmail.com on 25 Aug 2009 at 4:31

GoogleCodeExporter commented 8 years ago
Hi, im trying to do this but i get null values. like to clarify is it not 
supported 
yet?

<m:polygon  lineWidth="1" >
  <c:forEach var="circlePoint" items="#{MapBBean.circlePoints}" >
     <m:point longitude="#{circlePoint.longitude}" 
latitude="#{circlePoint.latitude}">
     </m:point>
  </c:forEach>
</m:polygon>

Original comment by cshi...@gmail.com on 11 Sep 2009 at 6:12

GoogleCodeExporter commented 8 years ago
Use <ui:repeat> not <c:forEach>

Original comment by Hazem.sa...@gmail.com on 11 Sep 2009 at 4:03