Class ManipulatingHelper
- java.lang.Object
-
- org.wicketstuff.wiquery.core.javascript.helper.ManipulatingHelper
-
public final class ManipulatingHelper extends java.lang.Object$Id: ManipulatingHelper.java 1714M 2012-01-17 08:35:43Z (local) $Helper to bind manipulating functions.
- Since:
- 0.7
- Author:
- Lionel Armanet
- See Also:
- "http://docs.jquery.com/Manipulation"
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChainableStatementafter(java.lang.CharSequence html)Binds theafterstatement.static ChainableStatementbefore(java.lang.CharSequence html)Binds thebeforestatement.static ChainableStatementinsertAfter(java.lang.String expression)Binds theinsertAfterstatement.static ChainableStatementinsertBefore(java.lang.String expression)Binds theinsertBeforestatement.
-
-
-
Method Detail
-
after
public static ChainableStatement after(java.lang.CharSequence html)
Binds theafterstatement.
-
insertAfter
public static ChainableStatement insertAfter(java.lang.String expression)
Binds theinsertAfterstatement.
-
before
public static ChainableStatement before(java.lang.CharSequence html)
Binds thebeforestatement.
-
insertBefore
public static ChainableStatement insertBefore(java.lang.String expression)
Binds theinsertBeforestatement.
-
-