Package com.github.dandelion.datatables.thymeleaf.processor.el

Examples of com.github.dandelion.datatables.thymeleaf.processor.el.TableFinalizerElProcessor


  public Set<IProcessor> getProcessors() {
    final Set<IProcessor> processors = new HashSet<IProcessor>();

    // Element processors
    processors.add(new TableInitializerElProcessor(new ElementNameProcessorMatcher("table", DIALECT_PREFIX + ":table", "true", false)));
    processors.add(new TableFinalizerElProcessor(new ElementNameProcessorMatcher("div", DIALECT_PREFIX + ":tmp", "internalUse", false)));
    processors.add(new TheadElProcessor(new ElementNameProcessorMatcher("thead", DIALECT_PREFIX + ":data", "internalUse", false)));
    processors.add(new TbodyElProcessor(new ElementNameProcessorMatcher("tbody", DIALECT_PREFIX + ":data", "internalUse", false)));
    processors.add(new ColumnInitializerElProcessor(new ElementNameProcessorMatcher("th", DIALECT_PREFIX + ":data", "internalUse", false)));
    processors.add(new ColumnFinalizerProcessor(new ElementNameProcessorMatcher("th", DIALECT_PREFIX + ":data", "internalUse", false)));
    processors.add(new TrElProcessor(new ElementNameProcessorMatcher("tr", DIALECT_PREFIX + ":data", "internalUse", false)));
View Full Code Here

TOP

Related Classes of com.github.dandelion.datatables.thymeleaf.processor.el.TableFinalizerElProcessor

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.