is there any way to perform a ui:repeat inside a javascript? this is what i'm trying to do.
var point;
<ui:repeat value="#{testController.allItems}" var="item">
point = new google.maps.LatLng(item.latitude,item.longitude);
createMarker(point, item.name, item.desc);
</ui:repeat>
testController.allItems
returns a list of entities with latitude and longitude and other values, i'm trying to do a store locator using google maps. createMarker
adds marker to the map.
or is there a better way to do this?