Product: You can't view this item in Lightning Experience (Salesforce1 / Mobile)
I have a custom list of Products which appear in Salesforce in both mobile and desktop.
When the user clicks on the button in the list:
<lightning:button label="{!r.Name}" value="{!r.Id}" onclick="{! c.navigateToProduct }" variant="base" />
It calls this JavaScript controller method:
navigateToProduct: function (cmp, event, helper) {
let recordId = event.getSource().get("v.value");
var navEvent = $A.get("e.force:navigateToSObject");
navEvent.setParams({
"recordId": recordId,
"slideDevName": "related"
});
navEvent.fire();
}
But when clicked from mobile (Salesforce1 or web) the Product page fails to load:

But when I try from a desktop computer it loads fine.
I have also tried using a plain anchor tag, which did not work:
<a href="{!r.url}">{!r.Name}</a>
And I've tried using window.location.href, which did not work.
What am I doing wrong?
How can I link to a product in a way that works on mobile?
lightning javascript salesforce1-app mobile
add a comment |
I have a custom list of Products which appear in Salesforce in both mobile and desktop.
When the user clicks on the button in the list:
<lightning:button label="{!r.Name}" value="{!r.Id}" onclick="{! c.navigateToProduct }" variant="base" />
It calls this JavaScript controller method:
navigateToProduct: function (cmp, event, helper) {
let recordId = event.getSource().get("v.value");
var navEvent = $A.get("e.force:navigateToSObject");
navEvent.setParams({
"recordId": recordId,
"slideDevName": "related"
});
navEvent.fire();
}
But when clicked from mobile (Salesforce1 or web) the Product page fails to load:

But when I try from a desktop computer it loads fine.
I have also tried using a plain anchor tag, which did not work:
<a href="{!r.url}">{!r.Name}</a>
And I've tried using window.location.href, which did not work.
What am I doing wrong?
How can I link to a product in a way that works on mobile?
lightning javascript salesforce1-app mobile
add a comment |
I have a custom list of Products which appear in Salesforce in both mobile and desktop.
When the user clicks on the button in the list:
<lightning:button label="{!r.Name}" value="{!r.Id}" onclick="{! c.navigateToProduct }" variant="base" />
It calls this JavaScript controller method:
navigateToProduct: function (cmp, event, helper) {
let recordId = event.getSource().get("v.value");
var navEvent = $A.get("e.force:navigateToSObject");
navEvent.setParams({
"recordId": recordId,
"slideDevName": "related"
});
navEvent.fire();
}
But when clicked from mobile (Salesforce1 or web) the Product page fails to load:

But when I try from a desktop computer it loads fine.
I have also tried using a plain anchor tag, which did not work:
<a href="{!r.url}">{!r.Name}</a>
And I've tried using window.location.href, which did not work.
What am I doing wrong?
How can I link to a product in a way that works on mobile?
lightning javascript salesforce1-app mobile
I have a custom list of Products which appear in Salesforce in both mobile and desktop.
When the user clicks on the button in the list:
<lightning:button label="{!r.Name}" value="{!r.Id}" onclick="{! c.navigateToProduct }" variant="base" />
It calls this JavaScript controller method:
navigateToProduct: function (cmp, event, helper) {
let recordId = event.getSource().get("v.value");
var navEvent = $A.get("e.force:navigateToSObject");
navEvent.setParams({
"recordId": recordId,
"slideDevName": "related"
});
navEvent.fire();
}
But when clicked from mobile (Salesforce1 or web) the Product page fails to load:

But when I try from a desktop computer it loads fine.
I have also tried using a plain anchor tag, which did not work:
<a href="{!r.url}">{!r.Name}</a>
And I've tried using window.location.href, which did not work.
What am I doing wrong?
How can I link to a product in a way that works on mobile?
lightning javascript salesforce1-app mobile
lightning javascript salesforce1-app mobile
edited Jan 14 at 15:14
Robs
asked Jan 14 at 12:30
RobsRobs
1,807529
1,807529
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It turns out that it is not possible to view a Product record via mobile or Salesforce1
There is a Salesforce Idea: Allow Products / Pricebooks to be displayed in Salesforce1 app
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "459"
};
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',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fsalesforce.stackexchange.com%2fquestions%2f246515%2fproduct-you-cant-view-this-item-in-lightning-experience-salesforce1-mobile%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
It turns out that it is not possible to view a Product record via mobile or Salesforce1
There is a Salesforce Idea: Allow Products / Pricebooks to be displayed in Salesforce1 app
add a comment |
It turns out that it is not possible to view a Product record via mobile or Salesforce1
There is a Salesforce Idea: Allow Products / Pricebooks to be displayed in Salesforce1 app
add a comment |
It turns out that it is not possible to view a Product record via mobile or Salesforce1
There is a Salesforce Idea: Allow Products / Pricebooks to be displayed in Salesforce1 app
It turns out that it is not possible to view a Product record via mobile or Salesforce1
There is a Salesforce Idea: Allow Products / Pricebooks to be displayed in Salesforce1 app
answered Jan 14 at 15:14
RobsRobs
1,807529
1,807529
add a comment |
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- 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%2fsalesforce.stackexchange.com%2fquestions%2f246515%2fproduct-you-cant-view-this-item-in-lightning-experience-salesforce1-mobile%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