Package io.jmix.flowui
Interface Dialogs.Draggable<T>
- Type Parameters:
T
- return type of fluent API methods
- All Known Subinterfaces:
Dialogs.BackgroundTaskDialogBuilder<T,
,V> Dialogs.MessageDialogBuilder
,Dialogs.OptionDialogBuilder
- All Known Implementing Classes:
DialogsImpl.BackgroundTaskDialogBuilderImpl
,DialogsImpl.MessageDialogBuilderImpl
,DialogsImpl.OptionDialogBuilderImpl
- Enclosing interface:
- Dialogs
public static interface Dialogs.Draggable<T>
Represents Dialog Builders that can be dragged.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
withDraggable
(boolean draggable) Sets whether dialog is enabled to be dragged by the user or not.
-
Method Details
-
withDraggable
Sets whether dialog is enabled to be dragged by the user or not.- Parameters:
draggable
-true
to enable dragging of the dialog,false
otherwise- Returns:
- builder
-
isDraggable
boolean isDraggable()- Returns:
true
if dragging is enabled,false
otherwise
-