I would like to do be like this:
<c:forEach items="#{myService.getServiceById(${item.edit_id})}" var="item">
${item.edit_id})
part of the myService.getServiceById()
should be GET param called edit_id. I want to pass it.
It's not working for me.. I've tried in numerous ways and by adding params in other fields (like hidden inputs), no luck. I need to grab that edit_id param from url and pass it to loop. Any solutions?