Jan Potoms
Jan Potoms
We'll most likely solve that with some hooks, e.g. ```ts import { useQuery } from '@mui/toolpad' ```
The main problem to solve with that will be order of evaluation. When does which binding expression evaluate, how do you deal with cyclic structures, and how to detect infinite...
We will most likely expose hooks to interact with the toolpad environment. For example: ```tsx import { usePageLink } from '@mui/toolpad'; import { Link } from '@mui/material' export default function...
@teowave Have you already checked out [Toolpad data providers](https://mui.com/toolpad/studio/concepts/data-providers/#row-creation). They have the ability add all CRUD operations to a datagrid. If this doesn't work for you, could you elaborate a...
@teowave Yes, that makes sense. I'm opening https://github.com/mui/mui-toolpad/issues/3357 as a feature request. We're also planning to open up this API for https://github.com/mui/mui-toolpad/discussions/3311
Related https://github.com/mui/mui-toolpad/issues/1770
Fix for argos: https://github.com/mui/mui-toolpad/pull/3208
@alphashr Toolpad has a server component which needs to run as well. Currently we are working on support for running Toolpad as a express server middleware. At the moment it's...
This currently isn't possible yet as all state related to filtering is localized to the datagrid. I see two potential ways we can move forward with this. 1. We expose...
Currently the data provider only sends over changed fields. It does this to minimize the payload it sends to the backend. Therefore it's unlikely we'll support sending over full rows....