Registry / devops / reflex-components-gridjs

reflex-components-gridjs

JSON →
library0.9.1pypypi✓ verified 82d ago

A Reflex component wrapper for Grid.js, providing a modern, responsive, and feature-rich data grid for Python web apps. Version 0.9.1 supports Reflex 0.6.0+. Released monthly.

pip install reflex-components-gridjs
INSTALL
IMPORT
SIG · REFLEX-COMPONENTS-
R
reflex-components-gridjs
devopspythonv0.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.

DataTable
from reflex_components_gridjs import DataTable
from reflex_components_gridjs import Gridjs
data_table
from reflex_components_gridjs import data_table
from reflex_components_gridjs import Gridjs
datatable
from reflex_components_gridjs import datatable
from reflex_components_gridjs import Gridjs

Basic Reflex app with Grid.js table.

import os from reflex_components_gridjs import Gridjs from reflex import App, Component class State(rx.State): data = [ ["Alice", 30, "Engineer"], ["Bob", 25, "Designer"], ["Charlie", 35, "Manager"], ] def index() -> Component: return Gridjs( data=State.data, columns=["Name", "Age", "Role"], search=True, pagination=True, sort=True, height="400px", ) app = App(state=State) app.add_page(index, route="/") app._compile()
Debug
Known issues
breakingReflex 0.6.0 changed the State system – `rx.State` replaces old `State` import. This package only works with Reflex >=0.6.0.
fix
Ensure Reflex version is 0.6.0+; update imports to `from reflex import State as rx.State` if needed.
affects: >=0.9.0
gotchaThe `data` prop expects a list of lists (rows), not a list of dicts. Passing dicts silently fails with no visible error.
fix
Convert your data to list-of-lists format before passing to Gridjs.
affects: all
deprecatedThe prop `resizable` was deprecated in 0.9.0 in favor of `resize`. Using `resizable` still works but warns.
fix
Replace `resizable=True` with `resize=True`.
affects: >=0.9.0
Upgrade
Version history
0.9.1latest on PyPI · released Apr 27, 2026
Audit
Dependencies
reflexrequiredRequired peer dependency for component integration
Agent activity
12 hits · last 30 days
node
12
Resources

No resource links recorded.

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