My app uses a ListGrid with a resizebar (on the right) and other content on the right. Is there a way to be notified when the user starts to drag the resizebar around?
thanks,
Tom
thanks,
Tom
grid.addDragResizeStartHandler(new DragResizeStartHandler() {
public void onDragResizeStart(DragResizeStartEvent event)
{
GWT.log("onDragResizeStart() called", null);
}
});
Comment