You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Bill Lucy (JIRA)" <de...@myfaces.apache.org> on 2016/06/09 16:05:20 UTC

[jira] [Created] (MYFACES-4050) Validators not invoked for emptyselectManyCheckbox components

Bill Lucy created MYFACES-4050:
----------------------------------

             Summary: Validators not invoked for emptyselectManyCheckbox components
                 Key: MYFACES-4050
                 URL: https://issues.apache.org/jira/browse/MYFACES-4050
             Project: MyFaces Core
          Issue Type: Bug
    Affects Versions: 2.2.10
         Environment: Tomcat, WebSphere Liberty
            Reporter: Bill Lucy


Custom validators are not invoked for selectManyCheckbox component, if the component has no selections made; this can be an issue if we want to handle the null/empty case in a validator.  The following context params address this case:

	<context-param>
		<param-name>javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL</param-name>
		<param-value>true</param-value>
	</context-param>
	
	<context-param>
	    <param-name>javax.faces.VALIDATE_EMPTY_FIELDS</param-name>
	    <param-value>true</param-value>
	</context-param>

But these params do not affect the behavior here.  Based on my understanding of the spec, it seems that this behavior should be changed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)