Package my.custom.packagee

Source Code of my.custom.packagee.MyOtherCustomFeature

package my.custom.packagee;

import com.github.dandelion.datatables.core.asset.Parameter;
import com.github.dandelion.datatables.core.constants.DTConstants;
import com.github.dandelion.datatables.core.extension.AbstractExtension;
import com.github.dandelion.datatables.core.html.HtmlTable;

public class MyOtherCustomFeature extends AbstractExtension {

  @Override
  public String getName() {
    return "myOtherCustomFeature";
  }

  @Override
  public void setup(HtmlTable table) {
    addParameter(new Parameter(DTConstants.DT_AUTO_WIDTH, true));
  }
}
TOP

Related Classes of my.custom.packagee.MyOtherCustomFeature

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.