Product: You can't view this item in Lightning Experience (Salesforce1 / Mobile)












1















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:



enter image description here



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?










share|improve this question





























    1















    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:



    enter image description here



    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?










    share|improve this question



























      1












      1








      1








      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:



      enter image description here



      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?










      share|improve this question
















      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:



      enter image description here



      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 14 at 15:14







      Robs

















      asked Jan 14 at 12:30









      RobsRobs

      1,807529




      1,807529






















          1 Answer
          1






          active

          oldest

          votes


















          3














          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






          share|improve this answer























            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            3














            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






            share|improve this answer




























              3














              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






              share|improve this answer


























                3












                3








                3







                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






                share|improve this answer













                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







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 14 at 15:14









                RobsRobs

                1,807529




                1,807529






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    William S. Burroughs

                    Eda skans

                    1924