Class FixedHeaderTableLibrarySettings


  • public class FixedHeaderTableLibrarySettings
    extends Object
    Provides library settings for the jQuery FixedHeaderTable plugin resource references

    Usage:
     
     public class MyApplication extends WebApplication
     {
         public void init()
         {
             super.init();
    
             FixedHeaderTableLibrarySettings settings = FixedHeaderTableLibrarySettings.get();
             settings.setJavaScriptReference(new JavaScriptResourceReference(...));
             settings.setStyleSheetReference(new CssResourceReference(...));
         }
     }
     
     
    Author:
    Sebastien Briquet - sebfz1
    • Method Detail

      • getJavaScriptReference

        public org.apache.wicket.request.resource.ResourceReference getJavaScriptReference()
        Gets the plugin javascript resource reference
        Returns:
        the ResourceReference
      • setJavascriptReference

        public void setJavascriptReference​(org.apache.wicket.request.resource.ResourceReference reference)
        Sets the plugin javascript resource reference
        Parameters:
        reference - the ResourceReference
      • getStyleSheetReference

        public org.apache.wicket.request.resource.ResourceReference getStyleSheetReference()
        Gets the plugin stylesheet resource reference
        Returns:
        the ResourceReference
      • setStylesheetReference

        public void setStylesheetReference​(org.apache.wicket.request.resource.ResourceReference reference)
        Sets the plugin stylesheet resource reference
        Parameters:
        reference - the ResourceReference