manki kimpluto.weblaze.dev·Nov 4, 2022ShortcutsPlutoGrid has default shortcut keys set, and users can change or set shortcut keys. Shortcut Range The scope of the shortcut depends on the focus. PlutoGrid : In the state that TextField is not focused. You can set custom shortcut keys. TextField :...Discuss·1.3K readsPlutoGridFlutter
manki kimpluto.weblaze.dev·Oct 22, 2022Rows from server-side.This is a function to call rows from the server side added in PlutoGrid 5.3 version. There are two ways to load and process data on the server side. The pagination method used in the DB structure where the total number of pages is known and the infin...Discuss·1 like·4.8K readsPlutoGridserver-side pagination
manki kimpluto.weblaze.dev·Jul 15, 2022Add and remove columns and rows.After setting columns and rows in the constructor of PlutoGrid, how to add columns and rows during runtime and precautions are described. Setting up columns and rows when creating a grid PlutoGrid can set columns and rows in the constructor when crea...Discuss·6.8K readsPlutoGridFlutter
manki kimpluto.weblaze.dev·Jul 12, 2022ConfigurationWhen creating a PlutoGrid, you can change the grid settings by passing PlutoGridConfiguration to the configuration property. child: PlutoGrid( columns: columns, rows: rows, configuration: const PlutoGridConfiguration(), ), enableMoveDownAfterS...Discuss·1 like·10.9K readsPlutoGridFlutter
manki kimpluto.weblaze.dev·Jul 12, 2022Rows and CellsDefault properties of rows Rows should be passed as a List<PlutoRow> type to the rows property when creating a PlutoGrid. It can also be passed as an empty list. final List<PlutoRow> rows = [ PlutoRow( cells: { 'id': PlutoCell(value: 'use...Discuss·5.4K readsPlutoGridFlutter
manki kimpluto.weblaze.dev·Jul 11, 2022ColumnsDefault properties of columns Columns must be passed to the columns property, which is a List<PlutoColumn> type when creating a PlutoGrid. final List<PlutoColumn> columns = [ PlutoColumn( title: 'Id', field: 'id', type: PlutoColumnType....Joel Varghese Joy and 3 others are discussing this4 people are discussing thisDiscuss·11 likes·6.4K readsPlutoGridPlutoGrid
manki kimpluto.weblaze.dev·Jul 11, 2022Getting StartedSearch for pluto_grid in pub.dev and add the package to your project.pub.dev to install pluto_grid And add PlutoGrid to your screen by referring to the example code below. import 'package:flutter/material.dart'; import 'package:pluto_grid/pluto_gr...Discuss·3 likes·5.8K readsPlutoGridFlutter
manki kimpluto.weblaze.dev·Jul 11, 2022Introduction to PlutoGrid.PlutoGrid is a Flutter package and is a data grid used on all platforms supported by Flutter.It is also open source and the source code is open to Github. https://www.youtube.com/watch?v=7lZGowuhd94 Features Freeze the column left and right Drag the...Discuss·3 likes·8.5K readsPlutoGridFlutter
manki kimpluto.weblaze.dev·Jul 11, 2022PlutoGrid Live DemoPlutoGrid Live Demo A link to a live demo where you can see PlutoGrid in action on the web.Discuss·7.6K readsLive demoFlutter