For our JSP + JSF 1.2 support, we have code to create MethodExpressions, which supported actionListener, for example, but not valueChangeListener.
Also, javax.faces.component.HtmlInputText uses a String to represent tabindex, even though it's supposed to be an integral value. Our JSP + JSF 1.2 support code tries to create ValueExpressions based on the datatype of the attribute value, which was an integer, which then clashed with the String property in the component itself. So I special-cased tabindex to not try to convert to an Integer.
TRUNK
Subversion 17765
icefaces\core\src\com\icesoft\faces\webapp\parser\ELSetPropertiesRule.java
For our JSP + JSF 1.2 support, we have code to create MethodExpressions, which supported actionListener, for example, but not valueChangeListener.
Also, javax.faces.component.HtmlInputText uses a String to represent tabindex, even though it's supposed to be an integral value. Our JSP + JSF 1.2 support code tries to create ValueExpressions based on the datatype of the attribute value, which was an integer, which then clashed with the String property in the component itself. So I special-cased tabindex to not try to convert to an Integer.
TRUNK
Subversion 17765
icefaces\core\src\com\icesoft\faces\webapp\parser\ELSetPropertiesRule.java