6.0.4-alpha14 • Published 6 months ago
glide-data-grid-cells-fork v6.0.4-alpha14
Current cells
- Star (Rating) Cell
- Sparklines
- Article
- Dropdown
- Range
- User profile
- Tags
Usage
Step 1: Add the extra cells to your grid.
import { useExtraCells } from "glide-data-grid-fork-cells";
const Grid = () => {
const { customRenderers } = useExtraCells();
return <DataEditor customRenderers={customRenderers} {...rest} />;
};
Step 2: Use the cells in your getCellContent
callback
import type { StarCell } from "glide-data-grid-fork-cells";
const getCellContent = React.useCallback(() => {
const starCell: StarCell = {
kind: GridCellKind.Custom,
allowOverlay: true,
copyData: "4 out of 5",
data: {
kind: "star-cell",
label: "Test",
rating: 4,
},
};
return starCell;
}, []);
Note on ArticleCell
The ArticleCell uses @toast-ui/editor
to provide its editor. To make sure it works correctly your project will need to import the css file it depends on.
import "@toast-ui/editor/dist/toastui-editor.css";
6.0.4-alpha14
6 months ago
6.0.4-alpha13
6 months ago
6.0.4-alpha12
6 months ago
6.0.4-alpha11
6 months ago
6.0.4-alpha10
6 months ago
6.0.4-alpha9
6 months ago
6.0.4-alpha8
6 months ago