form « Page « JSF Q&A





1. How to disable page/form in JSF    stackoverflow.com

For my application I want to have users with different permissions. One permission would allow a user to view the data from my database, while another permission would allow them ...

2. How can I tell the Facelets page, what object it shall load, when the user returns the form?    stackoverflow.com

I had a problem, which I solved, but I feel like my solution is a bad hack. Is there a better way? I have a page, on which I placed the form, ...

3. List Iterate in paragraph form in JSF page    stackoverflow.com

I want to iterate list in paragraph form in JSF page... for E.g. I have list and i want to iterate it's value as like

list<String>={'test1','test2','test3'}
I want JSF output as
test1:..test2:...test3...
how to achieve this ...

4. Multiple h:form in a JSF Page    stackoverflow.com

I am using the Facelet Templating Technology to layout my page in a JSF 2 app that I am working on. In my header.xhtml, primefaces requires that menubar be enclosed in h:form.

<h:form>
 ...

5. 2 forms in a page?    coderanch.com

Originally posted by Varun Khanna: There were issues in earlier JSF version, but now you can use two forms in a page. I have a page with search criteria at the top and search results (in datatable) at the bottom, both sections are in different forms and it works fine. yes, it works but there are two side effects: - if ...

6. Form Being Rendered Outside of the Page    coderanch.com

I am trying to do the following have one standard header.jsp file, but when I try to create a h:form in the header file the actual HTML form tag is rendered outside of the entire HTML tags. home.jsp file %@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>

...

8. Form at the bottom of the page    coderanch.com