List of JSF 2 events?

后端 未结 1 654
执念已碎
执念已碎 2020-12-14 09:20

So far I have only known and seen


and I wonder where I can fi

相关标签:
1条回答
  • 2020-12-14 09:44

    From the tag library document of JSF 2.1

    Name of the event for which to install a listener. The following table lists the valid values for this attribute, and the corresponding event type for which the listener action is registered.

    value for "type" tag attribute        Type of event sent to listener method
    preRenderComponent                    javax.faces.event.PreRenderComponentEvent
    preRenderView                         javax.faces.event.PreRenderViewEvent 
    postAddToView                         javax.faces.event.PostAddToViewEvent 
    preValidate                           javax.faces.event.PreValidateEvent 
    postValidate                          javax.faces.event.PostValidateEvent
    
    

    In addition to these values, the fully qualified class name of any java class that extends javax.faces.event.ComponentSystemEvent may be used as the value of the "type" attribute.

    So , beside the values listed above , you can also use the fully qualified class name of direct known subclasses of javax.faces.event.ComponentSystemEvent for the type tag attribute , which can be found in the Java docs .

    0 讨论(0)
提交回复
热议问题