| Code: |
| <body>
<f:view> <f:loadBundle basename="nl.cknow.jsf.jsftest.MessageBundle" var="bundle"/> <h:form id="loginForm" rendered="true"> <h:outputLabel for="userName" rendered="true"> <h:outputText value="#{bundle.user_name_label}"></h:outputText> </h:outputLabel> <h:inputText required="true" value="#{UserBean.userName}" id="userName" rendered="true"></h:inputText><br /> <h:outputLabel for="password" rendered="true"> <h:outputText value="#{bundle.user_password_label}"></h:outputText> </h:outputLabel> <h:inputSecret id="password" value="#{UserBean.password}" required="true" rendered="true"></h:inputSecret><br /> <h:commandButton value="#{bundle.login_button_label}" action="{#UserBean.loginUser}" type="submit"></h:commandButton> </h:form> </f:view> </body> |
| Quote: |
|
When I tried to set it back to the 1.4 library I got an error and it told me to look in the error log. Where can I find that? |
| Quote: |
|
I also noticed that I only have a Design and a Preview tab with the editor, so no Design or Design/Source tabs as shown in the tutorial. |
| support-rkalla wrote: |
| (<workspace dir>\.metadata\.log) |
| Quote: |
| They need to get updated, now the "Design" view is a split view, notice the bar in the middle. It encompases the Source/Split and Design tabs all into 1 tab now. |
| Quote: |
| Also, have you tried downloading the attached project to the faces tutorial and importing it and deploying it and seeing it it works without a hitch? |
| Diederik wrote: |
| I've now created a new project and everything seems to work fine.
The web-project icon now also includes a 'F' in it and I'm also seeing the JSF-Basic and JSF-Form Palettes :) The jar files are now also grouped in a Library. |
| Quote: |
|
I created the userLogin.jsp file using the JSF-Template and when I opened that in the editor it showed and 'F' in the tab and I didn't see the JSF-Basic or JSF-Form palettes, but I did see a whole bunch of other palettes, including JSF-HTML and JSF-Core. |
| Quote: |
|
- When creating a page with the JSF-Template the editor defaults to the Visual JSF Designer - When creating a page with the JSP-Template the editor defaults to the Visual JSP Designer |
| Quote: |
|
The Visual JSF Designer palletes don't include the JSF-Basic and JSF-Form, but it does have the JSF-HTML and JSF-Core palettes. |
| Quote: |
|
Is there a way that I can add the JSF-HTML and JSF-Core palettes to the Visual JSF Designer? I've looked in the Preferences, but couldn't find it. |