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 theFixedHeaderTableLibrarySettingsinstanceorg.apache.wicket.request.resource.ResourceReferenceGets the plugin javascript resource referenceorg.apache.wicket.request.resource.ResourceReferenceGets the plugin stylesheet resource referencevoidsetJavascriptReference(org.apache.wicket.request.resource.ResourceReference reference) Sets the plugin javascript resource referencevoidsetStylesheetReference(org.apache.wicket.request.resource.ResourceReference reference) Sets the plugin stylesheet resource reference
-
Method Details
-
get
Gets theFixedHeaderTableLibrarySettingsinstance- Returns:
- the
FixedHeaderTableLibrarySettingsinstance
-
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
-