API Reference
Advanced Tutorials
Comparison
FAQ
Contributing
Testing
Migration Guide
Licence
This is documentation for Refine 3.xx.xx, which is no longer actively maintained.
For up-to-date documentation, see the latest version (4.xx.xx).
Version: 3.xx.xx
Swizzle Ready
Text
This field lets you show basic text. It uses Material UI <Typography>
component.
Swizzle
You can swizzle this component to customize it with the refine CLI
Usage
Let's see how to use it in a basic list page:
localhost:3000/posts
Live previews only work with the latest documentation.
import {
useDataGrid,
DataGrid,
GridColumns,
List,
TextFieldComponent,
} from "@pankod/refine-mui";
const columns: GridColumns = [
{ field: "id", headerName: "ID", type: "number" },
{
field: "title",
headerName: "Title",
renderCell: function render({ row }) {
return <TextFieldComponent, value={row.title} />;
},
minWidth: 100,
flex: 1,
},
];
const PostsList: React.FC = () => {
const { dataGridProps } = useDataGrid<IPost>();
return (
<List>
<DataGrid {...dataGridProps} columns={columns} autoHeight />
</List>
);
};
interface IPost {
id: number;
title: string;
}
Was this helpful?
API Reference
Properties
External Props
It also accepts all props of Material UI Typography.
Was this helpful?