Manki Kim
Manki Kim
You can access the textEditingController in PlutoGridStateManager from the edit state of the cell. You can also capture events from textField.
You can implement it by referring to the two links below. https://stackoverflow.com/questions/66935362/how-to-use-texteditingcontroller-from-autocomplete-widget-flutter https://weblaze.dev/pluto_grid/build/web/#feature/cell-renderer
thank you I will apply it to the next version.
@hos3ein Updated to PlutoGrid 5.0.5. Thanks for the code contribution.
@FelixYew multiline is to display multiple lines of text in one cell? There is currently no function, but you can implement it using column 's renderer . There is a...
The onSelected callback is called when mode is set to PlutoGridMode.select when creating a PlutoGrid. ```dart body: PlutoGrid( columns: columns, rows: rows, onChanged: print, onLoaded: (PlutoGridOnLoadedEvent event) { stateManager =...
The callback is called when the selected row is tapped, and the unselected tab is tapped twice.
@stoneLee81 Yes, that's right. The onSelected callback is called when the selected row is tapped.
Added `PlutoGridMode.selectWithOneTap` property in `PlutoGrid` version 2.6 and later. Call the `onSelected callback with one tap.
@Taron133 I will consider your opinion.