seam « Component « JSF Q&A





1. JSF/Seam - call one component method for many radio groups    stackoverflow.com

I've got the following jsf page:

    <h:form>
        <ui:repeat value="#{list.categories}" var="cat">
            ...

2. Conversational components and JSF component    seamframework.org

i use a session bean, which has two components with a binding, under which i create the componenttree dynamically. @Name("Session")@Scope(ScopeType.SESSION)class MySession { HtmlPanelGroup group=new HtmlPanelGroup(); setter/getter}now i read the part in the reference manual about "Conversational components and JSF component"so i wanted to switch, but got trouble to make it work. i removed "group" from MySessionWrote Event Scoped Class ...

3. Custom component + Facelet + JSF + War Deployment    seamframework.org

NFO: Added Library from: file:/C:/jbdevstudio/jboss-eap/jboss-as/server/default/deploy/Test.war/META-INF/landmarksoftware.taglib.xml 11:41:34,730 ERROR [STDERR] Apr 18, 2008 11:41:34 AM com.sun.facelets.compiler.TagLibraryConfig loadImplicit INFO: Added Library from: jar:file:/C:/jbdevstudio/jboss-eap/jboss-as/server/default/deploy/Test.war/WEB-INF/lib/jboss-seam-mail.jar!/META-INF/seam-mail.taglib.xml 11:41:34,730 ERROR [STDERR] Apr 18, 2008 11:41:34 AM com.sun.facelets.compiler.TagLibraryConfig loadImplicit INFO: Added Library from: jar:file:/C:/jbdevstudio/jboss-eap/jboss-as/server/default/deploy/Test.war/WEB-INF/lib/jboss-seam-pdf.jar!/META-INF/seam-pdf.taglib.xml 11:41:34,746 ERROR [STDERR] Apr 18, 2008 11:41:34 AM com.sun.facelets.compiler.TagLibraryConfig loadImplicit INFO: Added Library from: jar:file:/C:/jbdevstudio/jboss-eap/jboss-as/server/default/deploy/Test.war/WEB-INF/lib/jboss-seam-ui.jar!/META-INF/s.taglib.xml 11:41:34,777 ERROR [STDERR] Apr 18, 2008 11:41:34 AM com.sun.facelets.compiler.TagLibraryConfig loadImplicit INFO: ...

4. Custom jsf components with Seam    seamframework.org

5. Custom JSF component with facelets    seamframework.org

1.1 xx http://domain/jsf colorPicker

10. jsf component    seamframework.org

11. JSF Composite Component    seamframework.org

12. Preserving data from JSF(1.2) to Sean Component.    seamframework.org

- The rich:message tag is used incorrectly. - Use the action method, because you need possibly the outcome for your navigation and change to the ajax-version of the button if you want partial reRendering. - I assume that the button triggers the call and because of a lack of a navigation rule the same page is reloaded, so the results show ...

14. Seam component that extends class cannot be invoked from JSF    seamframework.org

Is it possible to have base class (abstract/concreate) - that share common logic for a further seam component(s) which extends that class. I would like also to use seam annotations like @Logger, to provide common logger for further seam components that extend that base class (without using @Name in that base class).

15. s:link component and JSF-like outcomes    seamframework.org

Navigation seems to perform just as in JSF but the page parameter is dropped (is not delivered to the target page). I read in Seam documentation only about binding action method to the action attribute of s:link tag - then everything works fine. But it's hard to believe for me that in such elegant framework as Seam only that I can ...





17. Time JSF Component    seamframework.org

18. too many Seam component executions from JSF    seamframework.org

With different refresh modes depending on the phase where the getter is called by JSF... I think that would be a lot more intuitive than @Out or @Factory because the path to the property would be preserved... but I guess there should be some kind of architectural limitation in JSF that prevents anyone from developing such an apparently simple solution...

19. Trying to create a custom JSF component    seamframework.org

20. using just formattedText JSF component    seamframework.org

It appears that for using jboss-seam-ui.jar I will have to drag all seam jar files and seam enable my application which I do not want. When I put jboss-seam-ui.jar (which contains formattedText tag) into my application, it complains aboiut logging classes not found. Those logging classes are in jboss-seam.jar. So when I add jboss-seam.jar to my app - Seam strats screaming ...

21. Using Seam with Lilya JSF components    seamframework.org

22. Where to initialize JSF component?    seamframework.org

23. Could not instantiate Seam component: motorcycleCategService Problem    coderanch.com

HI all, I am trying to learn seam with jsf hibernate ajax by creating a simple advert application. I used seam gen in to create a new project and generate the entity classes (i already had tables in the database). After this i am tryign to follow the seam "hotel booking example" in the online documentation and create a new action ...