Thanks all for the reply, You were right...I did the change and it worked. And also, SelectOption is not wicket one but a class created by me only:
package WalknShine; import java.io.Serializable; public class SelectOption implements Serializable{ /** * */ private static final long serialVersionUID = 1L; private int key; private String value; public SelectOption(int key, String value) { this.key = key; this.value = value; } getters and setters... } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-dropdownchoice-onselectionchanged-must-override-or-implement-a-supertype-method-tp4584391p4590526.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org