Package org.apache.wicket.examples.base.markup

Examples of org.apache.wicket.examples.base.markup.ClassValue.without()


    ClassValue classValue = ClassValue.of(tag.getAttributes().getString(
        "class"));
    if (link.linksTo(link.getPage()))
      classValue.with("active");
    else
      classValue.without("active");

    tag.put("class", classValue.toString());
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.