Class LazyPanelEvent

All Implemented Interfaces:
Serializable

public class LazyPanelEvent extends FacesEvent

This event is passed as optional method argument of <o:lazyPanel listener>. It has convenient FacesEvent.getComponent() and getClientId() methods.


 public void listener(LazyPanelEvent event) {
     String clientId = event.getClientId();
     // ...
 }
 
Since:
5.3
Author:
Bauke Scholtz
See Also:
  • Constructor Details

    • LazyPanelEvent

      public LazyPanelEvent(FacesContext context, LazyPanel lazyPanel)
      Constructs a new lazy panel event.
      Parameters:
      context - The involved faces context.
      lazyPanel - The involved lazy panel component.
  • Method Details