Package com.vaadin.v7.ui
Interface Grid.SelectionModel.HasUserSelectionAllowed
-
- All Superinterfaces:
ClientConnector,com.vaadin.shared.Connector,Extension,Grid.SelectionModel,Serializable
- All Known Implementing Classes:
Grid.MultiSelectionModel,Grid.SingleSelectionModel
- Enclosing interface:
- Grid.SelectionModel
@Deprecated public static interface Grid.SelectionModel.HasUserSelectionAllowed extends Grid.SelectionModel
Deprecated.Interface implemented by selection models which support disabling client side selection while still allowing programmatic selection on the server.- Since:
- 7.7.7
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.server.ClientConnector
ClientConnector.AttachEvent, ClientConnector.AttachListener, ClientConnector.ConnectorErrorEvent, ClientConnector.DetachEvent, ClientConnector.DetachListener
-
Nested classes/interfaces inherited from interface com.vaadin.v7.ui.Grid.SelectionModel
Grid.SelectionModel.HasUserSelectionAllowed, Grid.SelectionModel.Multi, Grid.SelectionModel.None, Grid.SelectionModel.Single
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanisUserSelectionAllowed()Deprecated.Checks if the user is allowed to change the selection.voidsetUserSelectionAllowed(boolean userSelectionAllowed)Deprecated.Sets whether the user is allowed to change the selection.-
Methods inherited from interface com.vaadin.server.ClientConnector
addAttachListener, addDetachListener, attach, beforeClientResponse, detach, encodeState, getErrorHandler, getExtensions, getParent, getRpcManager, getStateType, getUI, handleConnectorRequest, isAttached, isConnectorEnabled, markAsDirty, markAsDirtyRecursive, removeAttachListener, removeDetachListener, removeExtension, requestRepaint, requestRepaintAll, retrievePendingRpcCalls, setErrorHandler
-
Methods inherited from interface com.vaadin.v7.ui.Grid.SelectionModel
getSelectedRows, isSelected, reset, setGrid
-
-
-
-
Method Detail
-
isUserSelectionAllowed
boolean isUserSelectionAllowed()
Deprecated.Checks if the user is allowed to change the selection.- Returns:
trueif the user is allowed to change the selection,falseotherwise
-
setUserSelectionAllowed
void setUserSelectionAllowed(boolean userSelectionAllowed)
Deprecated.Sets whether the user is allowed to change the selection.- Parameters:
userSelectionAllowed-trueif the user is allowed to change the selection,falseotherwise
-
-