onLoaded property

PlutoOnLoadedEventCallback? onLoaded
final

PlutoGrid completes setting and passes PlutoGridStateManager to event.

When the PlutoGrid starts, the desired setting can be made through PlutoGridStateManager.

ex) Change the selection mode to cell selection.

onLoaded: (PlutoGridOnLoadedEvent event) {
  event.stateManager.setSelectingMode(PlutoGridSelectingMode.cell);
},

Implementation

final PlutoOnLoadedEventCallback? onLoaded;