-
Bug
-
Resolution: Fixed
-
Normal
-
6.5.0, 5.0.12
Spinner no longer supports null values. For example:
<zk>
<spinner id="spinner" />
<zscript>
<![CDATA[
spinner.setValue(null);
spinner.intValue();
]]>
</zscript>
</zk>
In this case WrongValueException is thrown, however zero should be returned as Spinner.intValue() javadoc states: "Returns the value in int. If null, zero is returned."