Class InsertColumnEvent


  • public class InsertColumnEvent
    extends com.google.gwt.event.shared.GwtEvent<InsertColumnEventHandler>
    GwtEvent to insert a column.
    • Constructor Detail

      • InsertColumnEvent

        public InsertColumnEvent​(GridWidget gridWidget,
                                 int columnIndex,
                                 boolean isRight,
                                 boolean asProperty)
        Parameters:
        gridWidget -
        columnIndex -
        isRight - when true, column will be inserted to the right of the given index (i.e. at position columnIndex +1), otherwise to the left (i.e. at position columnIndex)
        asProperty - when true, column will use the instance header of the original one, so to create a new "property" header under the same instance
    • Method Detail

      • getGridWidget

        public GridWidget getGridWidget()
      • getColumnIndex

        public int getColumnIndex()
      • isRight

        public boolean isRight()
      • isAsProperty

        public boolean isAsProperty()