Package my.custom.packagee

Source Code of my.custom.packagee.MyCustomFeature

package my.custom.packagee;

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

public class MyCustomFeature extends AbstractExtension {

  public String getName() {
    return "myCustomFeature";
  }

  public void setup(HtmlTable table) {
    addParameter(new Parameter("bStateSave", true));
  }
}
TOP

Related Classes of my.custom.packagee.MyCustomFeature

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.