Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

[Bug] Unable to enter the data in the cells, when we use TextField/TextFormField as cell widgets in flutter web app. It looks like a blocker type issue #143

@prdct-builder

Description

@prdct-builder

In flutter web app,

  1. use TextField/TextFormField widgets in pluto column renderer property.
  2. try to modify the value in the cell, unable to modify, can see the focus but unable to enter the data

Ex: PlutoColumn(
title: 'Value',
field: 'value',
type: PlutoColumnType.text(),
enableAutoEditing: true,
enableContextMenu: false,
titleTextAlign: PlutoColumnTextAlign.center,
renderer: (rendererContext) {
return cellRendererWidget(rendererContext);
},
),

Widget cellRendererWidget(PlutoColumnRendererContext rendererContext) {
return TextField(
decoration: const InputDecoration(
hintText: 'value',
),
onChanged: (text) {
print('Entered value: $text');
},
);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions