It seems that mapping the selectOneCheckbox value attribute with a Boolean does not work. How to do this mapping ?
Of course the solution is to use boolean instead of Boolean !!! But it
is not always possible !!
Is the solution to use a converter ??? It's not so user friendly !!!
<tr:selectOneCheckbox value="#{myBean.value}"/>
MyBean {
Private Boolean _value;
Public Boolean isValue() {return _value;}
Public void setValue(Boolean value) {_value = value};
}

