View Javadoc
1   package org.vaadin.extension.gridscroll;
2   
3   import com.vaadin.ui.CustomComponent;
4   import com.vaadin.ui.Grid;
5   
6   /**
7    * The GridRenderedEvent event is fired once after Grid's initial column width calculation is complete
8    *
9    * @see GridScrollExtension#addGridRenderedListener(org.vaadin.extension.gridscroll.GridScrollExtension.GridRenderedListener)
10   *
11   * @since 2.2.0
12   * 
13   * @param <T> Bean type of the Grid
14   * 
15   * @author Tatu Lund
16   */
17  @SuppressWarnings("serial")
18  public class GridRenderedEvent<T> extends CustomComponent.Event {
19  
20  	public GridRenderedEvent(Grid<T> source) {
21  		super(source);
22  	}
23  
24  }