I have a JSF (facelet) page like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:q="http://teamdev.com/quipukit">
<head>
<title>Edit Role</title>
</head>
<body>
<f:view>
<ui:composition template="../template/template.xhtml">
<ui:define name="title">Edit Roles</ui:define>
<ui:define name="content">
<h:outputText value="#{RoleEditBean.roleId}" />
<h:form id="groupListsForm" rendered="#{empty
RoleEditBean.selectedGroupId}">
<q:twoListSelection value="#{RoleEditBean.selectedGroups}"
validator="#{RoleEditBean.validateSelection}">
<f:selectItems value="#{RoleEditBean.groups}"/>
</q:twoListSelection>
<h:inputHidden id="ih1" value="#{RoleEditBean.roleId}"/>
<h:commandButton id="cb1"
actionListener="#{RoleEditBean.updateAssignedGroups}" value="Update"/>
<h:commandButton id="cb2"
actionListener="#{RoleEditBean.editSelectedGroup}" value="Edit" />
</h:form>
<h:form id="groupDetailsForm" rendered="#{not empty
RoleEditBean.selectedGroupId}">
<h:selectManyCheckbox
id="privileges"
value="#{RoleEditBean.assignedGroupPrivileges}"
layout="pageDirection"
>
<f:selectItems value="#{RoleEditBean.groupPrivileges}"/>
</h:selectManyCheckbox>
<h:outputText value="#{RoleEditBean.selectedGroupId}" />
<h:inputHidden id="ih2" value="#{RoleEditBean.roleId}"/>
<h:inputHidden id="ih3"
value="#{RoleEditBean.selectedGroupId}"/>
<h:commandButton id="cb3"
actionListener="#{RoleEditBean.updateAssignedPrivileges}"
value="Update"/>
</h:form>
</ui:define>
</ui:composition>
</f:view>
</body>
</html>
When the rendered condition for the second form is met, it is rendered
and the first form is not rendered. When I submit the form, my action
method is not invoked. Here is the debug output:
8 DEBUG [javax.faces.webapp.FacesServlet] - <service begin>
2006-12-13 14:48:06,578 DEBUG
[org.apache.myfaces.context.servlet.ServletExternalContextImpl] -
<Incoming request has Content-Type header without character encoding:
application/x-www-form-urlencoded>
2006-12-13 14:48:06,578 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <entering restoreView
in org.apache.myfaces.lifecycle.LifecycleImpl>
2006-12-13 14:48:06,578 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
restoreView>
2006-12-13 14:48:06,578 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
restoreTreeStructure>
2006-12-13 14:48:06,578 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
deserializeView>
2006-12-13 14:48:06,578 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Processing
deserializeView - deserializing serialized state. Bytes : 3515>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Tree
structure restored from server session>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Exiting
restoreTreeStructure>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
restoreComponentState>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Exiting
restoreComponentState>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Exiting
restoreView>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <exiting restoreView in
org.apache.myfaces.lifecycle.LifecycleImpl>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <entering
applyRequestValues in org.apache.myfaces.lifecycle.LifecycleImpl>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <exiting
applyRequestValues in org.apache.myfaces.lifecycle.LifecycleImpl>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <entering
processValidations in org.apache.myfaces.lifecycle.LifecycleImpl>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'roleManager' in via original VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.el.VariableResolverImpl] - <Variable 'roleManager'
could not be resolved.>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'roleManager' in root WebApplicationContext>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] -
<Successfully resolved variable 'roleManager' in root
WebApplicationContext>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.beans.factory.support.DefaultListableBeanFactory]
- <Returning cached instance of singleton bean 'roleManager'>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'documentGroupManager' in via original
VariableResolver>
2006-12-13 14:48:06,640 DEBUG
[org.apache.myfaces.el.VariableResolverImpl] - <Variable
'documentGroupManager' could not be resolved.>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'documentGroupManager' in root
WebApplicationContext>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] -
<Successfully resolved variable 'documentGroupManager' in root
WebApplicationContext>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.beans.factory.support.DefaultListableBeanFactory]
- <Returning cached instance of singleton bean
'coreDocumentGroupManager'>
2006-12-13 14:48:06,640 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,656 INFO
[org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/]] -
<resource bundle message could not be found>
2006-12-13 14:48:06,656 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,656 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,656 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,656 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,656 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <exiting from
lifecycle.execute in processValidations because getRenderResponse is
true from one of the after listeners>
2006-12-13 14:48:06,656 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <entering
renderResponse in org.apache.myfaces.lifecycle.LifecycleImpl>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'securityBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'facesContext' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,671 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,687 DEBUG
[com.iranrayaneh.fileree.core.jdbc.DocumentGroupDaoImpl] - <Executing
SELECT ID, Name, InternalName, GroupCode, Description, CounterStart,
CounterPrefix, CounterValue, ParentID, DocumentSchemaID,
CreatorPositionID, DefaultWorkflowDefinitionID FROM DocumentGroup
ORDER BY ID>
2006-12-13 14:48:06,687 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,703 DEBUG
[com.iranrayaneh.fileree.core.jdbc.RoleDocumentGroupPrivilegeDaoImpl]
- <Executing SELECT RoleID, DocumentGroupID, DocumentGroupPrivilegeID
FROM Role_DocumentGroupPrivilege WHERE RoleID = ?>
2006-12-13 14:48:06,703 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,703 DEBUG
[com.iranrayaneh.fileree.core.jdbc.DocumentGroupDaoImpl] - <Executing
SELECT ID, Name, InternalName, GroupCode, Description, CounterStart,
CounterPrefix, CounterValue, ParentID, DocumentSchemaID,
CreatorPositionID, DefaultWorkflowDefinitionID FROM DocumentGroup
ORDER BY ID>
2006-12-13 14:48:06,703 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,718 DEBUG
[com.iranrayaneh.fileree.core.jdbc.RoleDocumentGroupPrivilegeDaoImpl]
- <Executing SELECT RoleID, DocumentGroupID, DocumentGroupPrivilegeID
FROM Role_DocumentGroupPrivilege WHERE RoleID = ?>
2006-12-13 14:48:06,718 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,734 DEBUG
[com.iranrayaneh.fileree.core.jdbc.DocumentGroupDaoImpl] - <Executing
SELECT ID, Name, InternalName, GroupCode, Description, CounterStart,
CounterPrefix, CounterValue, ParentID, DocumentSchemaID,
CreatorPositionID, DefaultWorkflowDefinitionID FROM DocumentGroup
ORDER BY ID>
2006-12-13 14:48:06,734 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,734 DEBUG
[com.iranrayaneh.fileree.core.jdbc.RoleDocumentGroupPrivilegeDaoImpl]
- <Executing SELECT RoleID, DocumentGroupID, DocumentGroupPrivilegeID
FROM Role_DocumentGroupPrivilege WHERE RoleID = ?>
2006-12-13 14:48:06,734 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,734 INFO
[org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/]] -
<resource bundle message could not be found>
2006-12-13 14:48:06,734 INFO
[org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/]] -
<resource bundle message could not be found>
2006-12-13 14:48:06,750 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,750 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,750 DEBUG
[org.springframework.web.jsf.DelegatingVariableResolver] - <Attempting
to resolve variable 'RoleEditBean' in via original VariableResolver>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
saveSerializedView>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Processing
saveSerializedView - Checked for duplicate Ids>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Processing
saveSerializedView - create new serialized view>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
getTreeStructureToSave>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Exiting
getTreeStructureToSave>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
getComponentStateToSave>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Exiting
getComponentStateToSave>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Processing
saveSerializedView - new serialized view created>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Processing
saveSerializedView - server-side state saving - save state>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Entering
serializeView>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Processing
serializeView - serialize state in session>
2006-12-13 14:48:06,750 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Processing
serializeView - serialize compressed>
2006-12-13 14:48:06,765 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Exiting
serializeView - serialized. Bytes : 3546>
2006-12-13 14:48:06,765 DEBUG
[org.apache.myfaces.application.jsp.JspStateManagerImpl] - <Exiting
saveSerializedView - server-side state saving - saved state>
2006-12-13 14:48:06,781 DEBUG [org.apache.myfaces.util.DebugUtils] -
<View after rendering
========================================
<UIViewRoot id="NULL" family="javax.faces.ViewRoot" locale="en"
renderKitId="HTML_BASIC" rendered="true" rendererType="NULL"
rendersChildren="false" transient="false"
viewId="/pages/security/edit_role.xhtml">
<teamdev.jsf.component.validation.ValidationProcessor
id="teamdevValidationProcessor"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
clientValidationRuleForApplication="off" commonMessages="NULL"
contextId="NULL" family="NULL" globalMessages="[]"
globalMessagesProcessed="true" onLoadForValidationScript="<script
type="text/javascript" >
q__addLoadEvent(q_initValidators);q__addLoadEvent(q_addRegularUpdate);
</script>
" rendered="true" rendererType="NULL" rendersChildren="false"
script="<script type="text/javascript" >
function q_initValidators(){
q__addEventHandler(window, 'resize', q_updateClientMessagesPosition);
}
</script>
" transient="false"
useDefaultClientValidationPresentationForApplication="true"
useDefaultServerValidationPresentationForApplication="true"
verifiableComponents="[Lteamdev.jsf.renderkit.validation.validator.VerifiableComponent;@17dabf4"/>
<html.HtmlOutputFormat id="_id0"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#0"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
converter="NULL" escape="true" family="javax.faces.Output"
localValue="??? ?? ????? {0} (??? {1}) ???? ??? ???."
rendered="#{!securityBean.userAnonymous}"
rendererType="javax.faces.Format" rendersChildren="false" style="NULL"
styleClass="NULL" title="NULL" transient="false">
<UIParameter id="_id1"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#1"
family="javax.faces.Parameter" name="NULL" rendered="true"
rendererType="NULL" rendersChildren="false" transient="false"
value="#{securityBean.currentUsername}"/>
<UIParameter id="_id2"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#2"
family="javax.faces.Parameter" name="NULL" rendered="true"
rendererType="NULL" rendersChildren="false" transient="false"
value="#{securityBean.currentPositionName}"/>
</html.HtmlOutputFormat>
<html.HtmlOutputLink id="_id3"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#3"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL"
rendered="#{!securityBean.userAnonymous}"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/secure/logout"/>
<html.HtmlOutputText id="_id4"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#4"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
converter="NULL" escape="true" family="javax.faces.Output"
localValue="??? ???? ?? ????? ???? ???? ???."
rendered="#{securityBean.userAnonymous}"
rendererType="javax.faces.Text" rendersChildren="false" style="NULL"
styleClass="NULL" title="NULL" transient="false"/>
<html.HtmlOutputLink id="_id5"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#5"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL"
rendered="#{securityBean.userAnonymous}"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/security/login.xhtml"/>
<html.HtmlOutputLink id="_id6"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#6"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/welcome.xhtml"/>
<html.HtmlOutputLink id="_id7"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#7"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/pages/documents/insertDocument.jsp"/>
<html.HtmlOutputLink id="_id8"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#8"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/report/selectForms.xhtml"/>
<html.HtmlOutputLink id="_id9"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#9"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/folder/view.xhtml"/>
<html.HtmlOutputLink id="_id10"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#10"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/folder/manage.xhtml"/>
<html.HtmlOutputLink id="_id11"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#11"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/setting/folder.xhtml"/>
<html.HtmlOutputLink id="_id12"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#12"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/sample/sample.xhtml"/>
<html.HtmlOutputLink id="_id13"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#13"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/sample/createWorkItem.xhtml"/>
<html.HtmlOutputLink id="createRoleLink"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#14"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/security/create_role.xhtml"/>
<html.HtmlOutputLink id="deleteRoleLink"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#15"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/security/delete_role.xhtml"/>
<html.HtmlOutputLink id="editRoleLink"
com.sun.facelets.MARK_ID="/pages/template/menu.xhtml#16"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accesskey="NULL" charset="NULL" converter="NULL" coords="NULL"
dir="NULL" family="javax.faces.Output" hreflang="NULL" lang="NULL"
localValue="NULL" onblur="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" rel="NULL" rendered="true"
rendererType="javax.faces.Link" rendersChildren="true" rev="NULL"
shape="NULL" style="NULL" styleClass="NULL" tabindex="NULL"
target="NULL" title="NULL" transient="false" type="NULL"
value="#{facesContext.externalContext.request.contextPath}/faces/pages/security/roles.xhtml"/>
<html.HtmlOutputText id="_id14"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#4"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
converter="NULL" escape="true" family="javax.faces.Output"
localValue="NULL" rendered="true" rendererType="javax.faces.Text"
rendersChildren="false" style="NULL" styleClass="NULL" title="NULL"
transient="false" value="#{RoleEditBean.roleId}"/>
<html.HtmlForm id="groupListsForm"
javax.faces.component.UIForm.org.apache.myfaces.HIDDEN_COMMAND_INPUTS_SET="[groupListsForm:_link_hidden_]"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#5"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accept="NULL" acceptcharset="NULL" dir="NULL"
enctype="application/x-www-form-urlencoded" family="javax.faces.Form"
lang="NULL" onclick="NULL" ondblclick="NULL" onkeydown="NULL"
onkeypress="NULL" onkeyup="NULL" onmousedown="NULL" onmousemove="NULL"
onmouseout="NULL" onmouseover="NULL" onmouseup="NULL" onreset="NULL"
onsubmit="NULL" rendered="#{empty RoleEditBean.selectedGroupId}"
rendererType="javax.faces.Form" rendersChildren="false" style="NULL"
styleClass="NULL" submitted="false" target="NULL" title="NULL"
transient="false">
<teamdev.jsf.component.twolistselection.TwoListSelection
id="_id15" com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#6"
addAllHint="Add all" addAllText="NULL" addHint="Add selected"
addText="NULL" allowAddRemoveAll="true" allowItemsOrdering="true"
allowSorting="false" buttonClass="NULL" buttonStyle="NULL"
converter="NULL" family="teamdev.jsf.TwoListSelection"
headerClass="NULL" headerStyle="NULL" immediate="false"
leftListboxHeader="NULL" leftListboxSelectedItems="" listClass="NULL"
listStyle="NULL" localValue="NULL" localValueSet="false"
moveDownHint="Move Down" moveDownText="NULL" moveUpHint="Move Up"
moveUpText="NULL" onadd="NULL" onremove="NULL" removeAllHint="Remove
all" removeAllText="NULL" removeHint="Remove selected"
removeText="NULL" rendered="true"
rendererType="teamdev.jsf.TwoListSelectionRenderer"
rendersChildren="true" required="false" rightListboxHeader="NULL"
rightListboxSelectedItems="103"
selectedValues="#{RoleEditBean.selectedGroups}" size="-1" style="NULL"
styleClass="NULL" submittedValue="NULL" transient="false" valid="true"
validator="#{RoleEditBean.validateSelection}"
value="#{RoleEditBean.selectedGroups}" valueChangeListener="NULL">
<UISelectItems id="_id16"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#7"
family="javax.faces.SelectItems" rendered="true" rendererType="NULL"
rendersChildren="false" transient="false"
value="#{RoleEditBean.groups}"/>
<html.HtmlCommandButton id="btn_prefix_id15_select_all"
accesskey="NULL" action="NULL" actionListener="NULL" alt="NULL"
dir="NULL" disabled="false" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="q__tls_moveAllRight('groupListsForm:_id15');"
ondblclick="NULL" onfocus="NULL" onkeydown="NULL" onkeypress="NULL"
onkeyup="NULL" onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" onselect="NULL" readonly="false"
rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="Add all" transient="false" type="button" value=">>"/>
<html.HtmlCommandButton id="btn_prefix_id15_select"
accesskey="NULL" action="NULL" actionListener="NULL" alt="NULL"
dir="NULL" disabled="false" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="q__tls_moveRight('groupListsForm:_id15');" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" onselect="NULL" readonly="false"
rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="Add selected" transient="false" type="button" value=">"/>
<html.HtmlCommandButton id="btn_prefix_id15_remove"
accesskey="NULL" action="NULL" actionListener="NULL" alt="NULL"
dir="NULL" disabled="false" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="q__tls_moveLeft('groupListsForm:_id15');" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" onselect="NULL" readonly="false"
rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="Remove selected" transient="false" type="button" value="<"/>
<html.HtmlCommandButton id="btn_prefix_id15_remove_all"
accesskey="NULL" action="NULL" actionListener="NULL" alt="NULL"
dir="NULL" disabled="false" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="q__tls_moveAllLeft('groupListsForm:_id15');"
ondblclick="NULL" onfocus="NULL" onkeydown="NULL" onkeypress="NULL"
onkeyup="NULL" onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" onselect="NULL" readonly="false"
rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="Remove all" transient="false" type="button" value="<<"/>
<html.HtmlCommandButton id="btn_prefix_id15_up" accesskey="NULL"
action="NULL" actionListener="NULL" alt="NULL" dir="NULL"
disabled="true" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="q__tls_moveUp('groupListsForm:_id15');" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" onselect="NULL" readonly="false"
rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="Move Up" transient="false" type="button" value="Up"/>
<html.HtmlCommandButton id="btn_prefix_id15_down"
accesskey="NULL" action="NULL" actionListener="NULL" alt="NULL"
dir="NULL" disabled="true" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="q__tls_moveDown('groupListsForm:_id15');" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" onselect="NULL" readonly="false"
rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="Move Down" transient="false" type="button" value="Down"/>
</teamdev.jsf.component.twolistselection.TwoListSelection>
<html.HtmlInputHidden id="ih1"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#8"
converter="NULL" family="javax.faces.Input" immediate="false"
localValue="NULL" localValueSet="false" rendered="true"
rendererType="javax.faces.Hidden" rendersChildren="false"
required="false" submittedValue="NULL" transient="false" valid="true"
validator="NULL" value="#{RoleEditBean.roleId}"
valueChangeListener="NULL"/>
<html.HtmlCommandButton id="cb1"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#9"
accesskey="NULL" action="NULL"
actionListener="#{RoleEditBean.updateAssignedGroups}" alt="NULL"
dir="NULL" disabled="false" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="NULL" ondblclick="NULL" onfocus="NULL" onkeydown="NULL"
onkeypress="NULL" onkeyup="NULL" onmousedown="NULL" onmousemove="NULL"
onmouseout="NULL" onmouseover="NULL" onmouseup="NULL" onselect="NULL"
readonly="false" rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="NULL" transient="false" type="submit" value="Update"/>
<html.HtmlCommandButton id="cb2"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#10"
accesskey="NULL" action="NULL"
actionListener="#{RoleEditBean.editSelectedGroup}" alt="NULL"
dir="NULL" disabled="false" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="NULL" ondblclick="NULL" onfocus="NULL" onkeydown="NULL"
onkeypress="NULL" onkeyup="NULL" onmousedown="NULL" onmousemove="NULL"
onmouseout="NULL" onmouseover="NULL" onmouseup="NULL" onselect="NULL"
readonly="false" rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="NULL" transient="false" type="submit" value="Edit"/>
</html.HtmlForm>
<html.HtmlForm id="groupDetailsForm"
javax.faces.component.UIForm.org.apache.myfaces.HIDDEN_COMMAND_INPUTS_SET="[groupDetailsForm:_link_hidden_]"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#11"
com.sun.facelets.APPLIED="[EMAIL PROTECTED]"
accept="NULL" acceptcharset="NULL" dir="NULL"
enctype="application/x-www-form-urlencoded" family="javax.faces.Form"
lang="NULL" onclick="NULL" ondblclick="NULL" onkeydown="NULL"
onkeypress="NULL" onkeyup="NULL" onmousedown="NULL" onmousemove="NULL"
onmouseout="NULL" onmouseover="NULL" onmouseup="NULL" onreset="NULL"
onsubmit="NULL" rendered="#{not empty RoleEditBean.selectedGroupId}"
rendererType="javax.faces.Form" rendersChildren="false" style="NULL"
styleClass="NULL" submitted="true" target="NULL" title="NULL"
transient="false">
<html.HtmlSelectManyCheckbox id="privileges"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#12"
accesskey="NULL" border="-2147483648" converter="NULL" dir="NULL"
disabled="false" disabledClass="NULL" enabledClass="NULL"
family="javax.faces.SelectMany" immediate="false" lang="NULL"
layout="pageDirection" localValue="NULL" localValueSet="false"
onblur="NULL" onchange="NULL" onclick="NULL" ondblclick="NULL"
onfocus="NULL" onkeydown="NULL" onkeypress="NULL" onkeyup="NULL"
onmousedown="NULL" onmousemove="NULL" onmouseout="NULL"
onmouseover="NULL" onmouseup="NULL" onselect="NULL" readonly="false"
rendered="true" rendererType="javax.faces.Checkbox"
rendersChildren="false" required="false"
selectedValues="#{RoleEditBean.assignedGroupPrivileges}" style="NULL"
styleClass="NULL" submittedValue="[Ljava.lang.String;@f85fd3"
tabindex="NULL" title="NULL" transient="false" valid="false"
validator="NULL" value="#{RoleEditBean.assignedGroupPrivileges}"
valueChangeListener="NULL">
<UISelectItems id="_id17"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#13"
family="javax.faces.SelectItems" rendered="true" rendererType="NULL"
rendersChildren="false" transient="false"
value="#{RoleEditBean.groupPrivileges}"/>
</html.HtmlSelectManyCheckbox>
<html.HtmlOutputText id="_id18"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#14"
converter="NULL" escape="true" family="javax.faces.Output"
localValue="NULL" rendered="true" rendererType="javax.faces.Text"
rendersChildren="false" style="NULL" styleClass="NULL" title="NULL"
transient="false" value="#{RoleEditBean.selectedGroupId}"/>
<html.HtmlInputHidden id="ih2"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#15"
converter="NULL" family="javax.faces.Input" immediate="false"
localValue="20" localValueSet="true" rendered="true"
rendererType="javax.faces.Hidden" rendersChildren="false"
required="false" submittedValue="NULL" transient="false" valid="true"
validator="NULL" value="#{RoleEditBean.roleId}"
valueChangeListener="NULL"/>
<html.HtmlInputHidden id="ih3"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#16"
converter="NULL" family="javax.faces.Input" immediate="false"
localValue="103" localValueSet="true" rendered="true"
rendererType="javax.faces.Hidden" rendersChildren="false"
required="false" submittedValue="NULL" transient="false" valid="true"
validator="NULL" value="#{RoleEditBean.selectedGroupId}"
valueChangeListener="NULL"/>
<html.HtmlCommandButton id="cb3"
com.sun.facelets.MARK_ID="/pages/security/edit_role.xhtml#17"
accesskey="NULL" action="NULL"
actionListener="#{RoleEditBean.updateAssignedPrivileges}" alt="NULL"
dir="NULL" disabled="false" family="javax.faces.Command" image="NULL"
immediate="false" lang="NULL" onblur="NULL" onchange="NULL"
onclick="NULL" ondblclick="NULL" onfocus="NULL" onkeydown="NULL"
onkeypress="NULL" onkeyup="NULL" onmousedown="NULL" onmousemove="NULL"
onmouseout="NULL" onmouseover="NULL" onmouseup="NULL" onselect="NULL"
readonly="false" rendered="true" rendererType="javax.faces.Button"
rendersChildren="false" style="NULL" styleClass="NULL" tabindex="NULL"
title="NULL" transient="false" type="submit" value="Update"/>
</html.HtmlForm>
</UIViewRoot>
========================================
2006-12-13 14:48:06,796 DEBUG
[org.apache.myfaces.lifecycle.LifecycleImpl] - <exiting renderResponse
in org.apache.myfaces.lifecycle.LifecycleImpl>
2006-12-13 14:48:06,796 DEBUG [javax.faces.webapp.FacesServlet] - <service end>
2006-12-13 14:48:06,812 DEBUG
[org.apache.myfaces.renderkit.html.util.ReducedHTMLParser] - <DOCTYPE
found at line 1>
2006-12-13 14:48:06,828 DEBUG
[org.acegisecurity.ui.ExceptionTranslationFilter] - <Chain processed
normally>
2006-12-13 14:48:06,828 DEBUG
[org.acegisecurity.context.HttpSessionContextIntegrationFilter] -
<SecurityContextHolder set to new context, as request processing
completed>
2006-12-13 14:48:06,828 DEBUG
[org.springframework.web.context.request.RequestContextListener] -
<Cleared thread-bound request context:
[EMAIL PROTECTED]>
Any ideas what is wrong?
Thanks in advance,
Behi
--
"Science is a differential equation. Religion is a boundary condition"
- Alan Turing
Behrang Saeedzadeh
http://www.jroller.com/page/behrangsa
http://my.opera.com/behrangsa