- Fix pagination bug.
- Added pagination.
- Added debounce on keyboard input in filter.
- Added onDoubleTap, onSecondaryTap cell events.
- Hide secondary scrollbar.
- Added enableDropToResize option when creating a column. (enables an icon for adjusting the width of a column when there is no context menu)
- Fix scroll bar drag behavior
- Add callback to row checks developed by https://github.com/MrCasCode.
- flutter 2.2.x compatible
- Change scroll physics.
- Fix a bug when dragging rows.
- Stable release.
- Fix errors of tests on null-safety.
- Fix focus problems on web.
- Edit dependency.
- Null safety version.
- Fix CupertinoScrollBar error.(In flutter 2.1.0.xxx)
-
Add moveRowsByIndex.
-
Fix focusing bug.
-
Apply strong-mode.
-
Allow custom key in row.
-
Rename moveRows to moveRowsByOffset.
-
Add moveRowsByIndex.
-
Fix focus.
- Changed the return value of FocusNode's onKey callback function from bool to KeyEventResult.
- Add china locale.
- Add hide columns.
- Class name change. Just like changing PlutoConfiguration to PlutoGridConfiguration, the word Grid was added in the middle.
- PlutoStateManager > PlutoGridStateManager
- PlutoOnLoadedEvent > PlutoGridOnLoadedEvent
- Many other classes...
- Fix sorting error when null value.
- The method of setting the filter has changed. columnFilters in configuration changed to columnFilterConfig.
- Different default filters can be set for each column.
- Modified to close the popup if there is no filter to clear when clicking the clear button in the filter popup.
- Rename DatetimeHelper to DateTimeHelper.
- Add filtering.
- Rename PlutoSelectingMode.square to PlutoSelectingMode.cell.
- Remove originalValue property from PlutoCell.
- Added to PlutoConfiguration to allow you to set the row height.
- Add Czech locale.
- Rename the Fix column to freeze column.
- Add enableEditingMode to PlutoColumn.
- Enable constant_identifier_names.
- ex)
PlutoColumnFixed.Left
>PlutoColumnFixed.left
- ex)
PlutoSelectingMode.Row
>PlutoSelectingMode.row
- All existing constants such as enum are changed.
- ex)
- Add a loading indicator.
- Fix bug, scrolling and row movement errors with createHeader present.
- Modified to move based on half the size of the cell or row.
- Update scrollbar status when moving with a keyboard.
- To disable dragging of rows while columns are be sorted.
- Add visualizations for dragging rows.
- Modified so that onPointerMove event occurs only in drag state.
- Applying scrolling up or down the grid when dragging a row.
- Add insertRows to PlutoStateManager.
- Remove setCurrentRowIdx, clearCurrentRowIdx, updateCurrentRowIdx from PlutoStateManager.
- Change the parameter of setCurrentSelectingPosition in PlutoStateManager.
- Add draggable scrollbar.
- PlutoGrid.popup has been deleted.
PlutoGrid.popup() has been removed.
Just clear the popup and create it with PlutoGrid(). - The column property enableDraggable has been changed to enableColumnDrag.
- Column properties have been added.
- enableRowDrag : If set to true, an icon is create in the cell of the column, and the row can be moved by dragging it.
- enableRowChecked : If set to true, a check box is create in the cell of the column.
- renderer : You can change the displayed cell.
- applyFormatterInEditing : If this is set to true, the value changed by a formatter is a reflected in the editing state. However, it is only in the readonly state, or the state in which the cell value cannot be directly modified in the form of popup.
- Add display property for the dual grid.
- Add shortcuts. (home, end, pageUp, pageDown)
- Add textAlign to column property.(PlutoColumnTextAlign.Left, or Right) #49
- Add enableMoveDownAfterSelecting, enterKeyAction in PlutoConfiguration.
- Add currentSelectingPositionList in PlutoStateManager.
- Add valueFormatter for display of the cell value.
- Cell selection problem. #35
- Modified so that AutoSize of column operates according to default TextStyle.
- Fixed column problem when adjusting column width.
- When the date is MM/dd/yyyy, the initial value of the pop-up is incorrect.
- When startDate, endDate are present, the initial value of the popup is not filled or scrolling fails.
- When the date is MM/dd/yyyy, misalignment error.
- Modify to operate the sorting criteria in the order of items in the Select Type Column.
- Modified so that the Grid does not force focus and works properly according to the situation in which focus get received or taken away.
- Fixed cell movement error.
- Change the column icon.
- Fix a bug that the previous data wasn't created when moving up in the date selection popup.
- enable/disable border of the between columns.
- Add a configuration. (Dark mode or custom setting)
- Fix a bug that the newly added fixed column doesn't scroll correctly.
- Ignore to move cell when pressing shift + arrow left or right, in edit mode.
- Select all - Control(Meta on MacOs) + A.
- Add Selecting mode for row.
- Removing rows by selecting cells.
- Add removing row.
- Add example for adding and removing row.
- Add None Selecting mode for states that do not require multi-selection.
- Add selecting-mode for selecting date range.
- Difference in Enter key in TextField when using RawKeyboardListener overlapping. flutter/flutter#65170
- BugFix : RawKeyEvent's logicalKey.keyLabel return value changed from null to "".
- Change the way to move between grids in dual grid mode. When moving the arrow keys, the focus moves when reaching the left and right ends.
- Update Demo.
- Change datetime column type to date.
- Fix selecting cell bug.
- Add dual mode grid.
- Add time type column.
- Update Demo.
- Change UI for datetime popup.
- fixed column bug. #1
- Multi-selection is canceled when clicking the current cell in the multi-selection state.
- Even when the cell is in the modified state, long tab to enter the multi-select mode.
- Added column type for date.(datetime will be soon)
- Fix bug : Error not working properly according to fixed columns when selecting multiple cells.
- Multi selection with KeyBoard : Multi selection with Shift and arrow keys.
- Column type : Add number type cell.
- Column fixation : Columns can be fixed to the left or right of the grid.
- Column shift : Change the order of the columns by dragging the column title.
- Column sort : Sort the list by clicking on the column heading.
- Column width : Change the column width by dragging the icon to the right of the column title.
- Column action : Click the icon to the right of the column title, you can control the column with the column action menu.
- Multi selection : By long tapping or clicking and moving.
- Copy & paste : Ctrl(macos : Meta) + C or V.
- Select Row Popup : Same as the grid, a selection popup that can be used when selecting an item from a list.
- Keyboard support : Arrow keys, Enter(Shift + Enter), Tab(Shift +Tab), Esc...