Is it possible to disable dragging in a com.google.gwt.user.client.ui.DialogBox instance? I like my container to have a title bar but it should be in a fixed position and the user shouldn’t be capable of moving it.
If it is not possible, what’s the GWT widget that fits for the job?
Extend DialogBox, override beginDragging, and use preventDefault to interrupt the drag handling.
Like so:
See the documentation for DomEvent.preventDefault