in jsp file.
<% java.util.Vector <HighlightVO> conditions = bean.getPropVector("HighlightVOList");%>
<script language="JavaScript">
var conditions = [];
<% for(HighlightVO highlightVO : conditions){ %>
conditions.push(<%=highlightVO%>); // not working.
<%}%>
</script>
i am not able to add the highlighVO in conditions[].
Can any one help to do this operations.