mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
109 lines
4.3 KiB
Plaintext
109 lines
4.3 KiB
Plaintext
<%--
|
|
Copyright (C) 2005 Alfresco, Inc.
|
|
|
|
Licensed under the Mozilla Public License version 1.1
|
|
with a permitted attribution clause. You may obtain a
|
|
copy of the License at
|
|
|
|
http://www.alfresco.org/legal/license.txt
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
either express or implied. See the License for the specific
|
|
language governing permissions and limitations under the
|
|
License.
|
|
--%>
|
|
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
|
|
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
|
|
<%@ page isELIgnored="false" %>
|
|
|
|
|
|
|
|
<f:view>
|
|
<%-- load a bundle of properties I18N strings here --%>
|
|
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
|
|
|
<h:form acceptCharset="UTF-8" id="userListForm">
|
|
|
|
<h2>UserList Test</h2>
|
|
|
|
<%-- use JSTL as simple example way to list the users --%>
|
|
<%-- TODO: find out how to get this working - currently it can't find the JSF bean
|
|
in the session scope. Using useBean tag creates a new copy --%>
|
|
<%--<jsp:useBean id="UserListBean" scope="session" class="jsftest.UserListBean" />--%>
|
|
<%--
|
|
<ol>
|
|
<c:forEach items="${sessionScope.UserListBean.users}" var="u">
|
|
<li>Username: ${u.username}, Name: ${u.name}, Roles: ${u.roles}</li>
|
|
</c:forEach>
|
|
</ol>
|
|
|
|
<p>
|
|
--%>
|
|
|
|
<%-- example of using a JSF DataTable to list the users --%>
|
|
<%-- iterates around the List of User objects in the UserListBean --%>
|
|
<b>JSF dataTable component test.</b><br>
|
|
<h:dataTable id="userlist" value="#{UserListBean.usersModel}" var="u">
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<%-- NOTE: You cannot insert plain HTML text here, due to the way that some JSF
|
|
components are architected, the plain HTML would get displayed before
|
|
the body of the datatable tag is output. This is also true of the
|
|
other container tags including 'panel'.
|
|
The datatable is considerably inferior to our portal data tags
|
|
or even the freely available 'displaytag' tag library --%>
|
|
<%-- You can also use the nasty 'f:verbatim' tag to wrap any non JSF elements --%>
|
|
<h:outputText value="#{msg.username}"/>
|
|
</f:facet>
|
|
<h:outputText value="#{u.username}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="#{msg.name}"/>
|
|
</f:facet>
|
|
<h:outputText value="#{u.name}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="#{msg.joindate}"/>
|
|
</f:facet>
|
|
<h:outputText value="#{u.dateJoined}">
|
|
<%-- example of a DateTime converter --%>
|
|
<%-- can be used to convert both input and output text --%>
|
|
<f:convertDateTime dateStyle="short" />
|
|
</h:outputText>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="#{msg.roles}"/>
|
|
</f:facet>
|
|
<h:outputText value="#{u.roles}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="actions">
|
|
<h:outputText value="#{msg.actions}"/>
|
|
</f:facet>
|
|
<%-- inline command link - has an action listener which will decode which
|
|
item in the grid it was clicked using the param tag below
|
|
Then the action listener will delegate to the action view --%>
|
|
<h:commandLink id="edit" value="Edit" action="edituser" actionListener="#{UserListBean.editUser}">
|
|
<f:param id="userId" name="id" value="#{u.username}" />
|
|
</h:commandLink>
|
|
</h:column>
|
|
</h:dataTable>
|
|
|
|
<p>
|
|
|
|
<h:commandButton id="add-user" value="Add" action="adduser" actionListener="#{UserListBean.addUser}"/>
|
|
|
|
<p>
|
|
|
|
<h:commandButton id="show-zoo-page" value="Show Zoo" action="showZoo" />
|
|
|
|
</h:form>
|
|
</f:view>
|