30: LWC Navigation In Community Pages (Hindi) || Salesforce Experience Cloud || Salesforce LWC

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024
  • What we'll learn in this video :-
    1) What is Salesforce experience cloud.
    2) Navigate To Salesforce Community Pages.
    3) Send Paremeters/recordId in state property of Navigation method in LWC.
    LWC tutorial playlist - • Lightning Web Componen...
    Salesforce Admin playlist - • Salesforce Admin
    ###############################################
    Follow on Instagram - / sfnoob10
    Connect on LinkedIn - / salesforce-noob-315990221
    Salesforce Noob Web Application link -salesforcenoob...
    #salesforce #salesforcedevelopment #LWC #lightningWebComponenents

ความคิดเห็น • 29

  • @bakshirocks
    @bakshirocks 2 ปีที่แล้ว +2

    Why did you not use pagereference to get the state variable from the URL? That is the officially supported method right.? Instead of using the Window.Location..

    • @SalesforceNoob
      @SalesforceNoob  2 ปีที่แล้ว +1

      Correct u can also use currentPageRenfrence using below code to get caseRecordId from url👇👇👇👇👇
      import { CurrentPageReference } from 'lightning/navigation';
      currentPageReference = null;
      @wire(CurrentPageReference)
      getStateParameters(currentPageReference) {
      if (currentPageReference) {
      this.caseId = currentPageReference.state.caseRecordId;
      }
      }

  • @akash4jadhav
    @akash4jadhav 2 ปีที่แล้ว +4

    Banao Bhai detailed videos playlist

  • @shivanik6497
    @shivanik6497 7 หลายเดือนก่อน +1

    Hello,
    How we can append recordId dynamically to the Site URL

    • @SalesforceNoob
      @SalesforceNoob  7 หลายเดือนก่อน

      that's what i explained in this video

  • @Gauravkumar-ue3cx
    @Gauravkumar-ue3cx 8 หลายเดือนก่อน +1

    Please create a complete playlist on experience cloud creating public website.

    • @SalesforceNoob
      @SalesforceNoob  8 หลายเดือนก่อน

      Already created playlist on Experience cloud which will consist videos about making public sites - th-cam.com/play/PLVILwsgb1PonFOtSYoLCrxQfJNTJPBxY0.html&si=xeFVII-DsI1esYyM

  • @hritikthakur4974
    @hritikthakur4974 10 หลายเดือนก่อน +1

    Can we redirect any url when click on the community tab in navigation menu

    • @SalesforceNoob
      @SalesforceNoob  10 หลายเดือนก่อน

      Yes you can learn that from this video - th-cam.com/video/WT_LLDoxjAU/w-d-xo.htmlsi=2qNrlZP9flVxZdJH

  • @swarnikaswarnkar270
    @swarnikaswarnkar270 7 หลายเดือนก่อน

    @Salesforce Noob Can you please guide how we can navigate from one page to another in LWR sites? I am facing error - lwr_bootstrap_locker: Routing error: A URL cannot be created to navigate to route

  • @suprithn6593
    @suprithn6593 ปีที่แล้ว +1

    Please create a complete playlist on experience cloud creating public website

  • @Hindi_motivational_creator_EH
    @Hindi_motivational_creator_EH 2 ปีที่แล้ว +1

    Very informative 🙏🙏👍

  • @zakeermohammed9817
    @zakeermohammed9817 9 หลายเดือนก่อน

    Thanks for your detail video. I have a requirement, after logging need to redirect to a custom page of sites. Already implemented using navigation service but facing the issue instead of opening in a current window, its opening a new window. Could you please suggest?

  • @amlanpatel6210
    @amlanpatel6210 2 ปีที่แล้ว +1

    Exactly what I was needing. You put me out of my problem. Great video

  • @Gaurav-x3y
    @Gaurav-x3y ปีที่แล้ว

    yes, i want to learn Experience clould how to create a website

  • @ahmadshadab6829
    @ahmadshadab6829 ปีที่แล้ว

    Please make videos on experience cloud too

  • @tinolbhoyar4646
    @tinolbhoyar4646 ปีที่แล้ว

    bhai mujhe state me recordID pass karni hain dusre community page pe aur use variable me store karna hain

  • @ankursharma192
    @ankursharma192 ปีที่แล้ว

    can you provide GitHub repository

  • @anshumishra07
    @anshumishra07 ปีที่แล้ว

    I am new to experience cloud and got a requirement to navigate to another page when community users click on a display card like yours. I was wondering if there is an out of the box component or not and landed up here.
    Although, I am not a developer, I really liked the way you explained everything and also trying to help others by sharing codes in comments as well. Thank you so much.

  • @andalumandula878
    @andalumandula878 2 ปีที่แล้ว

    I want to redirect to home page using dynamic url. I have replaced name attribute with 'home' api name. Seems not working. Please guide if i need to use any state properties

    • @SalesforceNoob
      @SalesforceNoob  2 ปีที่แล้ว

      Hi,
      if u want to navigate on home page in experience cloud,then u can use the below code :-
      JS code:-
      import { LightningElement,wire } from 'lwc';
      import { NavigationMixin } from 'lightning/navigation';
      export default class ClassName extends NavigationMixin(LightningElement) {
      navigationToHomePage(){
      // Navigate to the About page
      this[NavigationMixin.Navigate]({
      type: 'comm__namedPage',
      attributes: {
      name: 'Home'
      }
      });
      }
      }

  • @kennethkim1221
    @kennethkim1221 2 ปีที่แล้ว

    Hi! I followed your video even though I do not speak Hindi but I am not able to open a community page that I created :( When I click my LWC button, it shows a pop up
    "Page doesn't exist. Enter a valid URL and try again". My button component has the same NavigationMixin.Navigate as the one in your video to open community page. Can you help me with my error?

    • @SalesforceNoob
      @SalesforceNoob  2 ปีที่แล้ว

      Hi,
      You have to drop that lwc button on Salesforce community page and then give the reference of another page where u want to redirect

  • @gaganpathak1897
    @gaganpathak1897 2 ปีที่แล้ว

    Please page pagination video in lwc and also with and without pdf pagination in that

    • @SalesforceNoob
      @SalesforceNoob  2 ปีที่แล้ว

      Sure bro... I'll upload one on that

  • @skmukleshali7683
    @skmukleshali7683 2 ปีที่แล้ว

    Bro I am watting next video please upload or any update

    • @SalesforceNoob
      @SalesforceNoob  2 ปีที่แล้ว +2

      It will be uploaded soon on creating, updating and deleting records in salesforce with and without calling apex from lwc🤘