com.smartgwt.client.widgets.events
Interface HasDragResizeStopHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
Button, Calendar, Canvas, ColorPicker, ColumnTree, DateChooser, DetailViewer, Dialog, DynamicForm, EdgedCanvas, FilterBuilder, FlowLayout, GridRenderer, HeaderControl, HLayout, HStack, HTMLFlow, HTMLPane, IButton, Img, ImgButton, ImgSectionHeader, ImgSplitbar, ImgTab, Label, Layout, LayoutSpacer, ListGrid, Menu, MenuBar, MenuButton, MultiFilePicker, Progressbar, PropertySheet, RichTextEditor, Scrollbar, SearchForm, SectionHeader, SectionStack, Slider, Snapbar, Splitbar, StatefulCanvas, StretchImg, StretchImgButton, TabSet, TileGrid, TileLayout, Toolbar, ToolStrip, ToolStripResizer, ToolStripSeparator, TransferImgButton, TreeGrid, ViewLoader, VLayout, VStack, WidgetCanvas, Window

public interface HasDragResizeStopHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addDragResizeStopHandler(DragResizeStopHandler handler)
          Executed when the mouse button is released at the end of the drag resize.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addDragResizeStopHandler

HandlerRegistration addDragResizeStopHandler(DragResizeStopHandler handler)
Executed when the mouse button is released at the end of the drag resize. Your widget can use this opportunity to fire custom code based upon where the mouse button was released, etc.

Returning true from this handler will cause the dragTarget (or outline if dragAppearance is set to "outline") to be left at its current size. Returning false from this handler will cause it to snap back to its original location size

Parameters:
handler - the dragResizeStop handler
Returns:
HandlerRegistration used to remove this handler