| Package | Description |
|---|---|
| de.agilecoders.wicket.jquery | |
| de.agilecoders.wicket.jquery.function |
| Modifier and Type | Class and Description |
|---|---|
static class |
Attr.Auto
jquery attribute the value and type will be detect automatically.
|
static class |
Attr.MarkupId
markup id jquery selector.
|
static class |
Attr.NullValue
NullValue represents a jquery attribute that is "null".
|
static class |
Attr.Plain
Plain jquery attribute, this attribute won't be quoted.
|
static class |
Attr.Quoted
quoted jquery attribute.
|
| Modifier and Type | Method and Description |
|---|---|
static Attr |
JQuery.auto(Object value)
creates a auto detect attribute
|
static Attr |
Attr.nullValue() |
static Attr |
JQuery.plain(CharSequence value)
creates a plain attribute without quotes
|
static Attr |
JQuery.quoted(CharSequence value)
creates a quoted attribute
|
| Modifier and Type | Method and Description |
|---|---|
static JQuery |
JQuery.$(Attr selector)
helper method to allow a jquery like code style
|
static JQuery |
JQuery.$(org.apache.wicket.Component component,
Attr... additionalSelector)
helper method to allow a jquery like code style
|
JQuery |
JQuery.closest(Attr selector)
For each element in the set, get the first element that matches the selector by testing the element itself and
traversing up through its ancestors in the DOM tree.
|
JQuery |
JQuery.find(Attr selector)
Get the descendants of each element in the current set of matched elements, filtered by a selector.
|
static boolean |
Attr.isNullOrEmpty(Attr attr)
checks whether given value is null or empty
|
JQuery |
JQuery.on(Attr events,
Attr selector,
JavaScriptInlineFunction handler)
Attach an event handler function for one or more events to the selected elements.
|
JQuery |
JQuery.on(Attr events,
JavaScriptInlineFunction handler)
Attach an event handler function for one or more events to the selected elements.
|
| Modifier and Type | Method and Description |
|---|---|
static ClosestJqueryFunction |
ClosestJqueryFunction.closest(Attr selector)
creates a new
ClosestJqueryFunction instance |
static OnJqueryFunction |
OnJqueryFunction.on(Attr events,
Attr selector,
Attr data,
JavaScriptInlineFunction handler)
creates a new
OnJqueryFunction instance |
static OnJqueryFunction |
OnJqueryFunction.on(Attr events,
Attr selector,
JavaScriptInlineFunction handler)
creates a new
OnJqueryFunction instance |
static OnJqueryFunction |
OnJqueryFunction.on(Attr events,
Attr selector,
Object data,
JavaScriptInlineFunction handler)
creates a new
OnJqueryFunction instance |
static OnJqueryFunction |
OnJqueryFunction.on(Attr events,
JavaScriptInlineFunction handler)
creates a new
OnJqueryFunction instance |
| Constructor and Description |
|---|
ClosestJqueryFunction(Attr selector)
Construct.
|
FindJqueryFunction(Attr selector)
Construct.
|
OnJqueryFunction(Attr events,
Attr selector,
Attr data,
JavaScriptInlineFunction handler)
Construct.
|
Copyright © 2015. All Rights Reserved.