Registry / database / reflex-components-dataeditor

reflex-components-dataeditor

JSON →
library0.9.1pypypi✓ verified 82d ago

A Reflex component wrapping AG Grid for interactive data tables and spreadsheets in Reflex apps. Version 0.9.1 requires Python >= 3.10.

pip install reflex-components-dataeditor
INSTALL
IMPORT
SIG · REFLEX-COMPONENTS-
R
reflex-components-dataeditor
databasepythonv0.9.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

DataEditor
import reflex_components_dataeditor
from reflex_components_dataeditor import DataEditor

Basic example: creates a data editor table with two columns and sample data.

import reflex as rx from reflex_components_dataeditor import DataEditor class State(rx.State): data = [ {"Name": "Alice", "Age": 30}, {"Name": "Bob", "Age": 25}, ] def index(): return DataEditor( data=State.data, columns=[ {"field": "Name", "headerName": "Name"}, {"field": "Age", "headerName": "Age"}, ], ) app = rx.App() app.add_page(index)
Debug
Known issues
gotchaThe DataEditor component uses AG Grid under the hood; column definitions must follow AG Grid's format (e.g., 'field' and 'headerName').
fix
Ensure columns are a list of dicts with 'field' and 'headerName' keys.
affects: all
deprecatedOlder versions used 'columns' as a dict; this changed to a list of dicts in recent releases.
fix
Update columns to be a list of column definitions.
affects: <0.8.0
Upgrade
Version history
0.9.1latest on PyPI · released Apr 27, 2026
Audit
Dependencies
reflexrequiredPeer dependency for the Reflex framework
pandasoptionalOften used for data manipulation with DataEditor
Agent activity
27 hits · last 30 days
node
24
OpenAI (training)
1
Resources

No resource links recorded.

reflex-components-dataeditor — pip install reflex-components-dataeditor · libregistry