Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Hi,
The following constructor exists for TextField.
public TextField(String name, String label, boolean required)
{ super(label, label); setRequired(required); }The call to super should be :
super(name,label);
Kind regards,
bob