Tag <jc:handler>
Handles input event. The body of this tag is evaluated if its "event" attribute
equals to an event sent with request. This tag handles only standard events with
".jspcontrols.event" suffix in the key name. Handler tags must be defined in the
body of Accept tag, otherwise they will not be evaluated. Use a separate Handler
tag per event.
| Tag Information |
| Tag Class | net.jspcontrols.tags.HandlerTag |
| TagExtraInfo Class | None |
| Body Content | JSP |
| Display Name | None |
| Attributes |
| Name |
Required |
Request-time |
Type |
Description |
| keyPrefix |
false |
true |
java.lang.String |
Prefix that helps to identify an event, like "DIALOG-EVENT".
Used to identify presense of any event as the request key instead of
looking up for a specific event. Useful for group event processing,
like Tab Control events. |
| keySuffix |
false |
true |
java.lang.String |
Suffix that helps to identify an event, like "Event" or ".dispatch".
Used to identify presense of any event as the request key instead of
looking up for a specific event. Useful for group event processing,
like Tab Control events. |
| key |
false |
true |
java.lang.String |
Event key that identifies request parameter as event, optional. |
| event |
false |
true |
java.lang.String |
The name of event this tag handles. The body of this tag is evaluated
if "event" attribute equals to an actual event sent with request. |