|  |  | 
 |  |  |     const { getValues } = useFormContext(); | 
 |  |  |     return ( | 
 |  |  |         <Toolbar sx={{ justifyContent: 'end' }}> | 
 |  |  |             <SaveButton /> | 
 |  |  |             <></> | 
 |  |  |             {/* <SaveButton /> */} | 
 |  |  |             {/* <DeleteButton mutationMode="optimistic" /> */} | 
 |  |  |         </Toolbar> | 
 |  |  |     ) | 
 |  |  | 
 |  |  |                 <SimpleForm | 
 |  |  |                     shouldUnregister | 
 |  |  |                     warnWhenUnsavedChanges | 
 |  |  |                     toolbar={<FormToolbar />} | 
 |  |  |                     toolbar={false} | 
 |  |  |                     mode="onTouched" | 
 |  |  |                     defaultValues={{}} | 
 |  |  |                     sx={{ | 
 |  |  |                         "& .MuiFormLabel-root.MuiInputLabel-root.Mui-disabled": { | 
 |  |  |                             bgcolor: 'white', | 
 |  |  |                             WebkitTextFillColor: "rgba(0, 0, 0)" | 
 |  |  |                         }, | 
 |  |  |  | 
 |  |  |                         "& .MuiInputBase-input.MuiFilledInput-input.Mui-disabled": { | 
 |  |  |                             bgcolor: 'white', | 
 |  |  |                             WebkitTextFillColor: "rgba(0, 0, 0)" | 
 |  |  |                         } | 
 |  |  |                     }} | 
 |  |  |                 > | 
 |  |  |                     <Grid container width={{ xs: '100%', xl: '80%' }} rowSpacing={3} columnSpacing={3}> | 
 |  |  |                         <Grid item xs={24} md={16}> | 
 |  |  | 
 |  |  |                                 <NumberInput | 
 |  |  |                                     label="table.field.task.sort" | 
 |  |  |                                     source="sort" | 
 |  |  |                                     readOnly | 
 |  |  |                                 /> | 
 |  |  |                             </Stack> | 
 |  |  |                         </Grid> |