I do not know wghy is not rendering my property field, I was doing a king
prove of concept, and I ahve this 2 files:  ( I do not have border and
nothing, can you see a anything¿?

**************Home.java***********
 */
public class HomePage extends WebPage {

        private static final long serialVersionUID = 1L;

         */
    public HomePage(final PageParameters parameters) {

        // Add the simplest type of label
        add(new Label("message", "If you see this message wicket is properly
configured and running"));
        FeedbackPanel fbp=new FeedbackPanel("fbp");
        Model campoModel=new Model();
        TextField campo =new TextField("campo", campoModel);
        campo.setRequired(true);

        Form formulario=new Form("formulario");
        formulario.add(campo);
        add(formulario);
        add(fbp);
        // TODO Add your page's components here
    }
}

*******Home.properties******* at the same level as the other one
Required=my custom messages ${label}
formulario.campo.Required=my custome message for my form!!!



thank you very much guyssss
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Easy-fast-question-properties-file-for-validation-tp2256542p2256542.html
Sent from the Wicket - User 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

Reply via email to