JSP CUSTOM TAG LIBRARIES


ifserverevent tag
Example

Conditional tag. In the context of action, form, or view tags, enables you to conditionally evaluate the content of the ifserverevent tag based on the current state of the page. When you trigger a server-side event, which means you evaluate the body of the ifserverevent tag, a context object of type lotus.domino.taglib.EventContext is created and remains valid for the duration of the body of the tag. This tag is evaluated based on the following page states:
Tag this tag is working in the context ofEvent
State of the page that triggers the event
formQueryCloseIf the form is closing.
formQuerySaveIf the form is being saved.
actionOnActionIf the name (of either the action in the context action tag or the value specified in the for attribute of this tag) is present in the das_op page parameter.
Contexts
Valid in:


Creates for:
Syntax
Attributes

event


for
id
See the Common Domino JSP tag attributes section for definitions of debug, onfailure, and time.

Interfaces

You can use the following interfaces to determine the current event state:

public interface EventContext {


}

Example
See Also