I am using wicket 1.5. I have text field where in the user enters the amount and that "amount" i am using in wicket class for furthur purpose. I need to validate the amount field
final TextField<Integer> amount = new TextField<Integer>("amount",Integer.class);
If i use as above validation is done but i am not able to get the amount value in the class Whether there are any other methods to validate
Regards Sharath

