|  |  | 
 |  |  |     '& .column-name': { | 
 |  |  |     }, | 
 |  |  |     '& .opt': { | 
 |  |  |         width: 200 | 
 |  |  |         width: 130 | 
 |  |  |     }, | 
 |  |  | })); | 
 |  |  |  | 
 |  |  | const filters = [ | 
 |  |  |     <SearchInput source="condition" alwaysOn />, | 
 |  |  |     // <SearchInput source="condition" alwaysOn />, | 
 |  |  |     <ReferenceInput source="jamAgv" label="table.field.jam.jamAgv" reference="agv" alwaysOn> | 
 |  |  |         <AutocompleteInput label="table.field.jam.jamAgv" optionText="uuid" filterToQuery={(val) => ({ uuid: val })} /> | 
 |  |  |     </ReferenceInput>, | 
 |  |  |     <SelectInput source="cycleAvo" label="table.field.jam.cycleAvo" | 
 |  |  |         choices={[ | 
 |  |  |             { id: 1, name: 'common.enums.true' }, | 
 |  |  |             { id: 0, name: 'common.enums.false' }, | 
 |  |  |         ]} | 
 |  |  |         alwaysOn | 
 |  |  |     />, | 
 |  |  |     <DateInput label='common.time.after' source="timeStart" alwaysOn />, | 
 |  |  |     <DateInput label='common.time.before' source="timeEnd" alwaysOn />, | 
 |  |  |  | 
 |  |  |     <TextInput source="uuid" label="table.field.jam.uuid" />, | 
 |  |  |     <TextInput source="name" label="table.field.jam.name" />, | 
 |  |  |     <ReferenceInput source="jamAgv" label="table.field.jam.jamAgv" reference="agv"> | 
 |  |  |         <AutocompleteInput label="table.field.jam.jamAgv" optionText="uuid" filterToQuery={(val) => ({ uuid: val })} /> | 
 |  |  |     </ReferenceInput>, | 
 |  |  |     <ReferenceInput source="jamCode" label="table.field.jam.jamCode" reference="code"> | 
 |  |  |         <AutocompleteInput label="table.field.jam.jamCode" optionText="data" filterToQuery={(val) => ({ data: val })} /> | 
 |  |  |     </ReferenceInput>, | 
 |  |  | 
 |  |  |     <ReferenceInput source="avoSeg" label="table.field.jam.avoSeg" reference="segment"> | 
 |  |  |         <AutocompleteInput label="table.field.jam.avoSeg" optionText="id" filterToQuery={(val) => ({ id: val })} /> | 
 |  |  |     </ReferenceInput>, | 
 |  |  |     <SelectInput source="cycleAvo" label="table.field.jam.cycleAvo" | 
 |  |  |         choices={[ | 
 |  |  |             { id: 1, name: 'common.enums.true' }, | 
 |  |  |             { id: 0, name: 'common.enums.false' }, | 
 |  |  |         ]} | 
 |  |  |     />, | 
 |  |  |     <ReferenceInput source="cycleCode" label="table.field.jam.cycleCode" reference="code"> | 
 |  |  |         <AutocompleteInput label="table.field.jam.cycleCode" optionText="data" filterToQuery={(val) => ({ data: val })} /> | 
 |  |  |     </ReferenceInput>, | 
 |  |  | 
 |  |  |             > | 
 |  |  |                 <StyledDatagrid | 
 |  |  |                     preferenceKey='jam' | 
 |  |  |                     bulkActionButtons={() => <BulkDeleteButton mutationMode={OPERATE_MODE} />} | 
 |  |  |                     bulkActionButtons={false} | 
 |  |  |                     rowClick={(id, resource, record) => false} | 
 |  |  |                     expand={() => <JamPanel />} | 
 |  |  |                     expandSingle={true} | 
 |  |  | 
 |  |  |                     <NumberField source="id" /> | 
 |  |  |                     <TextField source="uuid" label="table.field.jam.uuid" /> | 
 |  |  |                     {/* <TextField source="name" label="table.field.jam.name" /> */} | 
 |  |  |                     <ReferenceField source="jamAgv" label="table.field.jam.jamAgv" reference="agv" link={false} sortable={false}> | 
 |  |  |                         <TextField source="uuid" /> | 
 |  |  |                     <ReferenceField source="jamAgv" label="table.field.jam.jamAgv" reference="agv" link={false} sortable={false} > | 
 |  |  |                         <TextField source="uuid" sx={{ fontWeight: 'bold' }} /> | 
 |  |  |                     </ReferenceField> | 
 |  |  |                     <ReferenceField source="jamCode" label="table.field.jam.jamCode" reference="code" link={false} sortable={false}> | 
 |  |  |                         <TextField source="data" /> | 
 |  |  | 
 |  |  |                         <TextField source="id" /> | 
 |  |  |                     </ReferenceField> | 
 |  |  |                     <ReferenceField source="avoAgv" label="table.field.jam.avoAgv" reference="agv" link={false} sortable={false}> | 
 |  |  |                         <TextField source="uuid" /> | 
 |  |  |                         <TextField source="uuid" sx={{ fontWeight: 'bold' }} /> | 
 |  |  |                     </ReferenceField> | 
 |  |  |                     <ReferenceField source="avoCode" label="table.field.jam.avoCode" reference="code" link={false} sortable={false}> | 
 |  |  |                         <TextField source="data" /> |