diff --git a/core/src/site/resources/tags/ajax/a.html b/core/src/site/resources/tags/ajax/a.html
index 6ec811f9b..ea3ab29d1 100644
--- a/core/src/site/resources/tags/ajax/a.html
+++ b/core/src/site/resources/tags/ajax/a.html
@@ -147,6 +147,14 @@ Please do not edit it directly.
String |
Id of element that will be shown while making request |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -409,7 +417,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| value |
diff --git a/core/src/site/resources/tags/ajax/autocompleter.html b/core/src/site/resources/tags/ajax/autocompleter.html
index 05a1d4467..c5d044b0b 100644
--- a/core/src/site/resources/tags/ajax/autocompleter.html
+++ b/core/src/site/resources/tags/ajax/autocompleter.html
@@ -203,6 +203,14 @@ Please do not edit it directly.
String |
Id of element that will be shown while request is made |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -529,7 +537,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| value |
diff --git a/core/src/site/resources/tags/ajax/bind.html b/core/src/site/resources/tags/ajax/bind.html
new file mode 100644
index 000000000..e6f440f4b
--- /dev/null
+++ b/core/src/site/resources/tags/ajax/bind.html
@@ -0,0 +1,186 @@
+
+
+
+ bind
+
+
+
+ Tag Name: bind
+ Description
+
+
+ Attach event listeners to elements to make AJAX calls
+
+
+
+ Attributes
+
+
+
+ Name |
+ Required |
+ Default |
+ Evaluated |
+ Type |
+ Description |
+
+
+ | afterNotifyTopics |
+ false |
+ |
+ true |
+ String |
+ Comma delimmited list of topics that will published after the request(if the request succeeds) |
+
+
+ | beforeNotifyTopics |
+ false |
+ |
+ true |
+ String |
+ Comma delimmited list of topics that will published before the request |
+
+
+ | errorNotifyTopics |
+ false |
+ |
+ true |
+ String |
+ Comma delimmited list of topics that will published after the request(if the request fails) |
+
+
+ | errorText |
+ false |
+ |
+ true |
+ String |
+ The text to display to the user if the is an error fetching the content |
+
+
+ | events |
+ true |
+ |
+ true |
+ String |
+ Comma delimited list of event names to attach to |
+
+
+ | executeScripts |
+ false |
+ false |
+ true |
+ Boolean |
+ Javascript code in the fetched content will be executed |
+
+
+ | formFilter |
+ false |
+ |
+ true |
+ String |
+ Function name used to filter the fields of the form. |
+
+
+ | formId |
+ false |
+ |
+ true |
+ String |
+ Form id whose fields will be serialized and passed as parameters |
+
+
+ | handler |
+ false |
+ |
+ true |
+ String |
+ Javascript function name that will make the request |
+
+
+ | href |
+ false |
+ |
+ true |
+ String |
+ The URL to call to obtain the content. Note: If used with ajax context, the value must be set as an url tag value. |
+
+
+ | id |
+ false |
+ |
+ true |
+ String |
+ The id to use for the element |
+
+
+ | indicator |
+ false |
+ |
+ true |
+ String |
+ Id of element that will be shown while making request |
+
+
+ | listenTopics |
+ false |
+ |
+ true |
+ String |
+ Topic that will trigger the remote call |
+
+
+ | loadingText |
+ false |
+ Loading... |
+ true |
+ String |
+ Text to be shown while content is being fetched |
+
+
+ | notifyTopics |
+ false |
+ |
+ true |
+ String |
+ Comma delimmited list of topics that will published before and after the request, and on errors |
+
+
+ | showErrorTransportText |
+ false |
+ true |
+ true |
+ Boolean |
+ Set whether errors will be shown or not |
+
+
+ | showLoadingText |
+ false |
+ true |
+ true |
+ Boolean |
+ Show loading text on targets |
+
+
+ | sources |
+ true |
+ |
+ true |
+ String |
+ Comma delimited list of ids of the elements to attach to |
+
+
+ | targets |
+ false |
+ |
+ true |
+ String |
+ Comma delimited list of ids of the elements whose content will be updated |
+
+
+
+
+
+
diff --git a/core/src/site/resources/tags/ajax/datetimepicker.html b/core/src/site/resources/tags/ajax/datetimepicker.html
index e2d116df0..eecda48ea 100644
--- a/core/src/site/resources/tags/ajax/datetimepicker.html
+++ b/core/src/site/resources/tags/ajax/datetimepicker.html
@@ -123,6 +123,14 @@ Please do not edit it directly.
String |
id for referencing element. For UI and form tags it will be used as HTML id attribute |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -377,7 +385,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| type |
diff --git a/core/src/site/resources/tags/ajax/div.html b/core/src/site/resources/tags/ajax/div.html
index 4d13f38a3..8ab7f22ed 100644
--- a/core/src/site/resources/tags/ajax/div.html
+++ b/core/src/site/resources/tags/ajax/div.html
@@ -171,6 +171,14 @@ Please do not edit it directly.
String |
Id of element that will be shown while making request |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -347,6 +355,14 @@ Please do not edit it directly.
String |
Set template to use for opening the rendered html. |
+
+ | preload |
+ false |
+ true |
+ true |
+ Boolean |
+ Load content when page is loaded |
+
| refreshOnShow |
false |
@@ -465,7 +481,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| updateFreq |
diff --git a/core/src/site/resources/tags/ajax/form.html b/core/src/site/resources/tags/ajax/form.html
index 8fb90a480..590b752eb 100644
--- a/core/src/site/resources/tags/ajax/form.html
+++ b/core/src/site/resources/tags/ajax/form.html
@@ -91,6 +91,14 @@ Please do not edit it directly.
String |
id for referencing element. For UI and form tags it will be used as HTML id attribute |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -345,7 +353,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| validate |
diff --git a/core/src/site/resources/tags/ajax/head.html b/core/src/site/resources/tags/ajax/head.html
index 5a21396c8..bae1f83c9 100644
--- a/core/src/site/resources/tags/ajax/head.html
+++ b/core/src/site/resources/tags/ajax/head.html
@@ -35,12 +35,20 @@ Please do not edit it directly.
String |
Context relative path of Dojo distribution folder |
+
+ | cache |
+ false |
+ true |
+ true |
+ Boolean |
+ Use Struts Dojo profile, which contains all Struts widgets in one file, making it possible to be chached by the browser |
+
| compressed |
false |
true |
true |
- String |
+ Boolean |
Use compressed version of dojo.js |
@@ -48,8 +56,24 @@ Please do not edit it directly.
| false |
false |
true |
+ Boolean |
+ Enable Dojo debug messages |
+
+
+ | extraLocales |
+ false |
+ |
+ true |
String |
- Set to true to enable Dojo debug messages |
+ Comma separated list of locale names to be loaded by Dojo, locale names must be specified as in RFC3066 |
+
+
+ | locale |
+ false |
+ |
+ true |
+ String |
+ Default locale to be used by Dojo, locale name must be specified as in RFC3066 |
diff --git a/core/src/site/resources/tags/ajax/submit.html b/core/src/site/resources/tags/ajax/submit.html
index d5b7a61ab..6fd83210f 100644
--- a/core/src/site/resources/tags/ajax/submit.html
+++ b/core/src/site/resources/tags/ajax/submit.html
@@ -163,6 +163,14 @@ Please do not edit it directly.
String |
Set indicator |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -433,7 +441,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| type |
diff --git a/core/src/site/resources/tags/ajax/tabbedpanel.html b/core/src/site/resources/tags/ajax/tabbedpanel.html
index 785338062..e5b9f7c9e 100644
--- a/core/src/site/resources/tags/ajax/tabbedpanel.html
+++ b/core/src/site/resources/tags/ajax/tabbedpanel.html
@@ -83,6 +83,14 @@ Please do not edit it directly.
String |
The id to assign to the component. |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -313,7 +321,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| value |
diff --git a/core/src/site/resources/tags/ajax/tree.html b/core/src/site/resources/tags/ajax/tree.html
index 6fc7e413c..51e286e36 100644
--- a/core/src/site/resources/tags/ajax/tree.html
+++ b/core/src/site/resources/tags/ajax/tree.html
@@ -163,6 +163,14 @@ Please do not edit it directly.
String |
The id to use for the element |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -441,7 +449,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| treeCollapsedTopic |
diff --git a/core/src/site/resources/tags/ajax/treenode.html b/core/src/site/resources/tags/ajax/treenode.html
index d0ae1a131..4ec967d59 100644
--- a/core/src/site/resources/tags/ajax/treenode.html
+++ b/core/src/site/resources/tags/ajax/treenode.html
@@ -67,6 +67,14 @@ Please do not edit it directly.
String |
The id to use for the element |
+
+ | javascriptTooltip |
+ false |
+ false |
+ true |
+ Boolean |
+ Use JavaScript to generate tooltips |
+
| key |
false |
@@ -281,7 +289,23 @@ Please do not edit it directly.
|
true |
String |
- Set the tooltip configuration |
+ Deprecated. Use individual tooltip configuration attributes instead. |
+
+
+ | tooltipCssClass |
+ false |
+ StrutsTTClassic |
+ true |
+ String |
+ CSS class applied to JavaScrip tooltips |
+
+
+ | tooltipDelay |
+ false |
+ Classic |
+ true |
+ String |
+ Delay in milliseconds, before showing JavaScript tooltips |
| value |