Hi guys,
I'm trying to do the following thing with Seam :
1. The user press a button
2. A Javascript function is called and gets data from a third party API (Google Maps)
3. A Session bean's method is called (using seam remoting and query the database.
4. A results list is initialized and outjected
So far everything is fine (I get a callback in Javascript).
But what I would like to do is dynamically refresh the result list (in the page) using
facelets (not DHTML) :
<ui:repeat value="#{myResults}" var="res">
#{res.name}
</ui:repeat>
Is it possible to do it with Seam ? Should I use iceFaces or something ?
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4083460#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...