EDIT not showing on the <RESOUCE>
See original GitHub issueI have follow the instruction on the website and found out the EDIT part not showing in the list page.
Here is my code.
<Resource name="Merchants" list={Merchants} options={{ label: 'store' }} icon={MerchantIcon} edit={MerchantEdit} create={MerchantCreate} />
export const MerchantEdit = (props) => (
<Edit {...props} title='Edit'>
<SimpleForm>
<DisabledInput label="Id" source="id"/>
<TextField source="Translate[0].DisplayName" label="name"/>
<FunctionField source="Rating" render={record => `${record.Rating / 100}`} label="rate"/>
<TextField source="MonthlySales" label="sales"/>
</SimpleForm>
</Edit>
);
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Resource editor does not work - Visual Studio Feedback
I have tried to create a new Windows Desktop project and double-click the rc file, the resource can be showed properly in Resource...
Read more >A newly added user/resource is not showing on add or edit ...
Navigate to the Resource Center page in PWA. · Select the checkbox for a resource and then click the Edit button in the...
Read more >Resource editor not available in Visual Studio 2008
There is no editor available for 'D:\MyPath\MyProject\Resources.de.resx'. Make sure the application for the file type (.resx) is installed. Any idea on how to ......
Read more >The Managed Resource Editor fails to show content of ...
Expected Behavior: The Managed Resource Editor should show the image content of the resource file. Actual Behavior: The Manage Resource Editor ...
Read more >Resource bundle editor disappeared : IDEA-274651 - YouTrack
Visible to issue readers ... Resource bundle editor disappeared ... In 2021.2 there are no tabs at the botom of editor for switching...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Did you add
EditButton
toMerchants
?@leesei The problem solved, Thank you so much!