Package wicket.markup.html.form

Examples of wicket.markup.html.form.Radio


    item.add(new Label("categorie",
        new PropertyModel(tarification.getCategorie(), "nom")));
    item.add(new Label("date",
        new PropertyModel(tarification.getCourse(), "date")));
    item.add(new Label("prix", new PropertyModel(tarification, "prix")));
    item.add(new Radio("radio", item.getModel()));

  }
View Full Code Here

TOP

Related Classes of wicket.markup.html.form.Radio

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.