Package org.wicketstuff.stateless

Examples of org.wicketstuff.stateless.StatelessAjaxFormComponentUpdatingBehavior


        new Model<String>(_b));
    final DropDownChoice<String> c = new DropDownChoice<String>("c",
        new Model<String>("2"), Arrays.asList(new String[] { "1", "2",
            "3" }));

    c.add(new StatelessAjaxFormComponentUpdatingBehavior("change") {

      @Override
      protected PageParameters getPageParameters() {
        return new PageParameters();
      }
View Full Code Here

TOP

Related Classes of org.wicketstuff.stateless.StatelessAjaxFormComponentUpdatingBehavior

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.