Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ on:
tags:
- v*
pull_request:
branches: [main]
branches:
- main
- v*

jobs:
test:
Expand Down Expand Up @@ -104,4 +106,3 @@ jobs:
run: |
source .venv/bin/activate
pytest --headless

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to `dash-ag-grid` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).
Links "DE#nnn" prior to version 2.0 point to the Dash Enterprise closed-source Dash AG Grid repo

## [32.3.1] - 2025-08-05

### Fixed
- [#394](https://github.com/plotly/dash-ag-grid/issues/394) allow `cellRenderer` column def to be a function

## [32.3.0] - 2025-07-23

### Changed
Expand Down
1 change: 1 addition & 0 deletions src/lib/utils/propCategories.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ export const COLUMN_MAYBE_FUNCTIONS = {
cellStyle: 1,
cellClass: 1,
tooltipComponent: 1,
cellRenderer: 1,
cellRendererSelector: 1,

// Columns: Row Dragging
Expand Down
49 changes: 49 additions & 0 deletions tests/test_column_defs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import dash_ag_grid as dag
from dash import Dash, html, dcc
from . import utils


def test_cd001_cell_renderer_function(dash_duo):
app = Dash(__name__)

rowData = [
{"size": 0, "is_available": True},
{"size": 1, "is_available": False},
{"size": 2, "is_available": True},
]

columnDefs = [
{
"field": "size",
"cellRenderer": {"function": "params.value < 1 ? 'small' : params.value < 2 ? 'medium' : 'large'"},
},
{
"field": "is_available",
"cellRenderer": {"function": "params.value ? 'yes' : 'no'"},
},
]

app.layout = html.Div(
[
dcc.Markdown(
"This grid uses a javascript function to display computed values for each cell, rather than the raw numbers."
),
dag.AgGrid(
columnDefs=columnDefs,
rowData=rowData,
id="grid",
),
],
style={"margin": 20},
)

dash_duo.start_server(app)

grid = utils.Grid(dash_duo, "grid")

grid.wait_for_cell_text(0, 0, "small")
grid.wait_for_cell_text(0, 1, "yes")
grid.wait_for_cell_text(1, 0, "medium")
grid.wait_for_cell_text(1, 1, "no")
grid.wait_for_cell_text(2, 0, "large")
grid.wait_for_cell_text(2, 1, "yes")