Manki Kim
Manki Kim
I am not yet developing the asynchronous pagination feature, but users can implement server side pagination as shown below. (I have plans to add features in the future) Sorting and...
Released PlutoGrid 5.3.0 Refer to below link. https://github.com/bosskmk/pluto_grid/issues/601
There is no function to adjust the columns to fit their full width. A feature should be added. Or you can implement it yourself using stateManager .
Not yet available as a feature. More will be added in the future. Before that, I attach a simple example. ```dart import 'package:flutter/material.dart'; import 'package:pluto_grid/pluto_grid.dart'; import '../dummy_data/development.dart'; class EmptyScreen extends...
PlutoGrid 5.0.0 has been deployed. There are other changes from version 4, so please check the ChangeLog. https://pub.dev/packages/pluto_grid/changelog#500---2022-7-11 The demo page has also been updated. https://weblaze.dev/pluto_grid/build/web/#/
I've tried a few times to implement that feature. 1. Grouping rows based on a specific column. (The children of the grouped row are collapsed and unfolded.) 2. A hierarchical...
Released 5.2.0 for row grouping. Web demo https://weblaze.dev/pluto_grid/build/web/#feature/row-group
@roubledodemiamgasoni Try something like below. ```dart @override void initState() { super.initState(); focusNode = FocusNode(onKey: handleFocus); } KeyEventResult handleFocus(FocusNode node, RawKeyEvent event) { return KeyEventResult.skipRemainingHandlers; } child: TextField( focusNode: focusNode, controller:...
@jhonmolano09 KeyEventResult behaves differently on desktop and web. https://github.com/flutter/flutter/issues/93873 Please refer to the example below to solve it. thank you. ```dart import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:pluto_grid/pluto_grid.dart'; import '../dummy_data/development.dart'; class...
The `onChanged` callback is called when the cell's value has changed.