docs(DEV-878): Add cells note to the Performance guide#12270
Merged
qunabu merged 2 commits intoApr 7, 2026
Conversation
Explain that the `cells` option is a function invoked before every rendering cycle and runs for each visible cell, making it heavier than the static `cell`/`columns` options or `setCellMeta()`. Direct users to prefer lighter alternatives and reserve `cells` for logic that can't be expressed otherwise. https://claude.ai/code/session_011NCnBtswtc4PSGbpAaASsr
Contributor
Author
|
Task linked: DEV-878 Add |
Contributor
|
✅ Preview documentation is is available now |
commit: |
GreenFlux
previously approved these changes
Apr 3, 2026
…d adapt API reference format Resolve conflict in performance.md: adopt the new Astro Starlight <div class="boxes-list"> format for the Related API reference section while preserving the new cell/cells/columns/setCellMeta() entries added for DEV-878. https://claude.ai/code/session_011NCnBtswtc4PSGbpAaASsr
Contributor
Performance tests resultsArtifacts: performance-tests-output (open the workflow run, then download performance-tests-output).
|
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
[skip changelog]
cellsoption when possible" section to the Performance guide explaining thatcellsis a function called before every rendering cycle for every visible cell, making it heavier than alternatives.cell,columns,setCellMeta()) and when to prefer them.cell,cells,columns, andsetCellMeta()entries.ClickUp task
https://app.clickup.com/t/9015210959/DEV-878
Test plan
cells,cell,columns,setCellMeta(), rendering cycles) resolve correctly.https://claude.ai/code/session_011NCnBtswtc4PSGbpAaASsr
Note
Low Risk
Low risk documentation-only change; the main risk is incorrect guidance or broken links in the added references.
Overview
Adds a new performance-guide section warning that the
cellsoption is evaluated on every render for every visible cell and can significantly impact grid performance.Recommends lower-overhead alternatives (
cell,columns, andsetCellMeta()) and expands the “Related API reference” to include these options plus a new “Core methods” entry forsetCellMeta().Reviewed by Cursor Bugbot for commit ec7afab. Bugbot is set up for automated code reviews on this repo. Configure here.