onSelected property

PlutoOnSelectedEventCallback? onSelected
final

onSelected can receive a response only if PlutoGrid.mode is set to PlutoGridMode.select .

When a row is tapped or the Enter key is pressed, the row information can be returned. When PlutoGrid is used for row selection, you can use PlutoGridMode.select . Basically, in PlutoGridMode.select, the onLoaded callback works when the current selected row is tapped or the Enter key is pressed. This will require a double tap if no row is selected. In PlutoGridMode.selectWithOneTap, the onLoaded callback works when the unselected row is tapped once.

Implementation

final PlutoOnSelectedEventCallback? onSelected;