Class FixedHeaderTableLibrarySettings
java.lang.Object
com.googlecode.wicket.jquery.ui.plugins.fixedheadertable.settings.FixedHeaderTableLibrarySettings
Provides library settings for the jQuery FixedHeaderTable plugin resource references
Usage:
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 Summary
Modifier and TypeMethodDescriptionget()
Gets theFixedHeaderTableLibrarySettings
instanceorg.apache.wicket.request.resource.ResourceReference
Gets the plugin javascript resource referenceorg.apache.wicket.request.resource.ResourceReference
Gets the plugin stylesheet resource referencevoid
setJavascriptReference
(org.apache.wicket.request.resource.ResourceReference reference) Sets the plugin javascript resource referencevoid
setStylesheetReference
(org.apache.wicket.request.resource.ResourceReference reference) Sets the plugin stylesheet resource reference
-
Method Details
-
get
Gets theFixedHeaderTableLibrarySettings
instance- Returns:
- the
FixedHeaderTableLibrarySettings
instance
-
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
- theResourceReference
-
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
- theResourceReference
-