how to remove link to resource list view from menu?
up vote
0
down vote
favorite
I'm currently building out an application that has a boatload of resources that i will need list views of but don't want links to the list views in the menu. Is there a way to have access to them without having links on the side? to create the list i'm doing the following.
<resources
list={EmployeeList}
/>
docs don't mention this so any help would be appreciated.
I have say ~45 resources that i will need to access list views but only 6 or so are major enough to be accessed from the main menu. i'd still want access to them by viewing details of the other lists or show pages.
react-admin
|
show 1 more comment
up vote
0
down vote
favorite
I'm currently building out an application that has a boatload of resources that i will need list views of but don't want links to the list views in the menu. Is there a way to have access to them without having links on the side? to create the list i'm doing the following.
<resources
list={EmployeeList}
/>
docs don't mention this so any help would be appreciated.
I have say ~45 resources that i will need to access list views but only 6 or so are major enough to be accessed from the main menu. i'd still want access to them by viewing details of the other lists or show pages.
react-admin
Please provide more information about your issue to receive a detailed answer. How exactly do you want to 'have access to them without having links on the side'? Maybe via the url? i.e. type "YOUR_APP/employee"? and go to the employees' list but you don't want the 'Employees' button on your menu?
– PanosVl
Nov 20 at 15:15
1
yes that is exactly what i want to happen. i want to be able to go to the url but don't want the button in the menu.
– JohnD1986
Nov 20 at 15:19
1
Ok, in that case I think your only option is to create a custom menu and provide it to your Admin component, as react-admin is not that modular on its default menu.
– PanosVl
Nov 20 at 15:23
Note that menu option is deprecated and you should create a custom layout in which you'll have your custom menu as described here: marmelab.com/react-admin/Theming.html#using-a-custom-layout
– PanosVl
Nov 20 at 15:25
alright thanks. that's what i was thinking i'd need to do. have a nice day.
– JohnD1986
Nov 20 at 15:27
|
show 1 more comment
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm currently building out an application that has a boatload of resources that i will need list views of but don't want links to the list views in the menu. Is there a way to have access to them without having links on the side? to create the list i'm doing the following.
<resources
list={EmployeeList}
/>
docs don't mention this so any help would be appreciated.
I have say ~45 resources that i will need to access list views but only 6 or so are major enough to be accessed from the main menu. i'd still want access to them by viewing details of the other lists or show pages.
react-admin
I'm currently building out an application that has a boatload of resources that i will need list views of but don't want links to the list views in the menu. Is there a way to have access to them without having links on the side? to create the list i'm doing the following.
<resources
list={EmployeeList}
/>
docs don't mention this so any help would be appreciated.
I have say ~45 resources that i will need to access list views but only 6 or so are major enough to be accessed from the main menu. i'd still want access to them by viewing details of the other lists or show pages.
react-admin
react-admin
edited Nov 20 at 15:23
asked Nov 19 at 22:40
JohnD1986
13
13
Please provide more information about your issue to receive a detailed answer. How exactly do you want to 'have access to them without having links on the side'? Maybe via the url? i.e. type "YOUR_APP/employee"? and go to the employees' list but you don't want the 'Employees' button on your menu?
– PanosVl
Nov 20 at 15:15
1
yes that is exactly what i want to happen. i want to be able to go to the url but don't want the button in the menu.
– JohnD1986
Nov 20 at 15:19
1
Ok, in that case I think your only option is to create a custom menu and provide it to your Admin component, as react-admin is not that modular on its default menu.
– PanosVl
Nov 20 at 15:23
Note that menu option is deprecated and you should create a custom layout in which you'll have your custom menu as described here: marmelab.com/react-admin/Theming.html#using-a-custom-layout
– PanosVl
Nov 20 at 15:25
alright thanks. that's what i was thinking i'd need to do. have a nice day.
– JohnD1986
Nov 20 at 15:27
|
show 1 more comment
Please provide more information about your issue to receive a detailed answer. How exactly do you want to 'have access to them without having links on the side'? Maybe via the url? i.e. type "YOUR_APP/employee"? and go to the employees' list but you don't want the 'Employees' button on your menu?
– PanosVl
Nov 20 at 15:15
1
yes that is exactly what i want to happen. i want to be able to go to the url but don't want the button in the menu.
– JohnD1986
Nov 20 at 15:19
1
Ok, in that case I think your only option is to create a custom menu and provide it to your Admin component, as react-admin is not that modular on its default menu.
– PanosVl
Nov 20 at 15:23
Note that menu option is deprecated and you should create a custom layout in which you'll have your custom menu as described here: marmelab.com/react-admin/Theming.html#using-a-custom-layout
– PanosVl
Nov 20 at 15:25
alright thanks. that's what i was thinking i'd need to do. have a nice day.
– JohnD1986
Nov 20 at 15:27
Please provide more information about your issue to receive a detailed answer. How exactly do you want to 'have access to them without having links on the side'? Maybe via the url? i.e. type "YOUR_APP/employee"? and go to the employees' list but you don't want the 'Employees' button on your menu?
– PanosVl
Nov 20 at 15:15
Please provide more information about your issue to receive a detailed answer. How exactly do you want to 'have access to them without having links on the side'? Maybe via the url? i.e. type "YOUR_APP/employee"? and go to the employees' list but you don't want the 'Employees' button on your menu?
– PanosVl
Nov 20 at 15:15
1
1
yes that is exactly what i want to happen. i want to be able to go to the url but don't want the button in the menu.
– JohnD1986
Nov 20 at 15:19
yes that is exactly what i want to happen. i want to be able to go to the url but don't want the button in the menu.
– JohnD1986
Nov 20 at 15:19
1
1
Ok, in that case I think your only option is to create a custom menu and provide it to your Admin component, as react-admin is not that modular on its default menu.
– PanosVl
Nov 20 at 15:23
Ok, in that case I think your only option is to create a custom menu and provide it to your Admin component, as react-admin is not that modular on its default menu.
– PanosVl
Nov 20 at 15:23
Note that menu option is deprecated and you should create a custom layout in which you'll have your custom menu as described here: marmelab.com/react-admin/Theming.html#using-a-custom-layout
– PanosVl
Nov 20 at 15:25
Note that menu option is deprecated and you should create a custom layout in which you'll have your custom menu as described here: marmelab.com/react-admin/Theming.html#using-a-custom-layout
– PanosVl
Nov 20 at 15:25
alright thanks. that's what i was thinking i'd need to do. have a nice day.
– JohnD1986
Nov 20 at 15:27
alright thanks. that's what i was thinking i'd need to do. have a nice day.
– JohnD1986
Nov 20 at 15:27
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
0
down vote
I'm no sure how or where you need to access these resources, but this is what I've done with some "lesser" resources I don't need to have the "List" view or sidebar link to:
Define<Resource name="myresource" />
in App.js. Now you can make a list for example inside another resource's "show" view by using <ReferenceManyField resource="myresource" />
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53383691%2fhow-to-remove-link-to-resource-list-view-from-menu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I'm no sure how or where you need to access these resources, but this is what I've done with some "lesser" resources I don't need to have the "List" view or sidebar link to:
Define<Resource name="myresource" />
in App.js. Now you can make a list for example inside another resource's "show" view by using <ReferenceManyField resource="myresource" />
add a comment |
up vote
0
down vote
I'm no sure how or where you need to access these resources, but this is what I've done with some "lesser" resources I don't need to have the "List" view or sidebar link to:
Define<Resource name="myresource" />
in App.js. Now you can make a list for example inside another resource's "show" view by using <ReferenceManyField resource="myresource" />
add a comment |
up vote
0
down vote
up vote
0
down vote
I'm no sure how or where you need to access these resources, but this is what I've done with some "lesser" resources I don't need to have the "List" view or sidebar link to:
Define<Resource name="myresource" />
in App.js. Now you can make a list for example inside another resource's "show" view by using <ReferenceManyField resource="myresource" />
I'm no sure how or where you need to access these resources, but this is what I've done with some "lesser" resources I don't need to have the "List" view or sidebar link to:
Define<Resource name="myresource" />
in App.js. Now you can make a list for example inside another resource's "show" view by using <ReferenceManyField resource="myresource" />
answered Nov 28 at 11:54
punkjay
12
12
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53383691%2fhow-to-remove-link-to-resource-list-view-from-menu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please provide more information about your issue to receive a detailed answer. How exactly do you want to 'have access to them without having links on the side'? Maybe via the url? i.e. type "YOUR_APP/employee"? and go to the employees' list but you don't want the 'Employees' button on your menu?
– PanosVl
Nov 20 at 15:15
1
yes that is exactly what i want to happen. i want to be able to go to the url but don't want the button in the menu.
– JohnD1986
Nov 20 at 15:19
1
Ok, in that case I think your only option is to create a custom menu and provide it to your Admin component, as react-admin is not that modular on its default menu.
– PanosVl
Nov 20 at 15:23
Note that menu option is deprecated and you should create a custom layout in which you'll have your custom menu as described here: marmelab.com/react-admin/Theming.html#using-a-custom-layout
– PanosVl
Nov 20 at 15:25
alright thanks. that's what i was thinking i'd need to do. have a nice day.
– JohnD1986
Nov 20 at 15:27