Class VeilResources.Javascript
- java.lang.Object
-
- org.wicketstuff.minis.behavior.veil.VeilResources.Javascript
-
- Enclosing class:
- VeilResources
public static class VeilResources.Javascript extends Object
JavaScript interface for the veil- Author:
- ivaynberg
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classVeilResources.Javascript.GenericJavascript interface to the veil that is decoupled from wicket
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Stringhide(Component component)Generates javascript to hide a veil over a tagstatic Stringshow(Component component)Generates javascript to show a veil over a tagstatic Stringshow(Component component, String className)Generates javascript to show a veil over a tagstatic Stringtoggle(Component component)Generates javascript to show a toggle over a tagstatic Stringtoggle(Component component, String className)Generates javascript to toggle a veil over a tag
-
-
-
Method Detail
-
hide
public static String hide(Component component)
Generates javascript to hide a veil over a tag- Parameters:
component- component that will be covered by veilclassName- css class name for veil- Returns:
- javascript
-
show
public static String show(Component component)
Generates javascript to show a veil over a tag- Parameters:
component- component that will be covered by veil- Returns:
- javascript
-
show
public static String show(Component component, String className)
Generates javascript to show a veil over a tag- Parameters:
component- component that will be covered by veilclassName- css class name for veil- Returns:
- javascript
-
toggle
public static String toggle(Component component)
Generates javascript to show a toggle over a tag- Parameters:
component- component that will be covered by veil- Returns:
- javascript
-
-