Package org.richfaces.taglib

Source Code of org.richfaces.taglib.ScrollableDataTableTagHandler

/**
*
*/
package org.richfaces.taglib;

import org.ajax4jsf.taglib.html.facelets.RowKeyConverterRule;

import com.sun.facelets.tag.MetaRuleset;
import com.sun.facelets.tag.jsf.ComponentConfig;
import com.sun.facelets.tag.jsf.ComponentHandler;

/**
* @author Maksim Kaszynski
*
*/
public class ScrollableDataTableTagHandler extends ComponentHandler {

  public ScrollableDataTableTagHandler(ComponentConfig config) {
    super(config);
  }
 
 
  @SuppressWarnings("unchecked")
  @Override
  protected MetaRuleset createMetaRuleset(Class type) {
   
    MetaRuleset ruleset = super.createMetaRuleset(type);
   
    ruleset.addRule(RowKeyConverterRule.INSTANCE);
   
    return ruleset;
  }
}
TOP

Related Classes of org.richfaces.taglib.ScrollableDataTableTagHandler

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.