How to Create a Tree Menu in Power Apps | Step-by-Step Tutorial for Beginners

Поділитися
Вставка
  • Опубліковано 12 лис 2024

КОМЕНТАРІ • 22

  • @HareKrsn213
    @HareKrsn213 2 місяці тому

    On internet you will get lot of 1 level side menu but believe me this is what I was looking for nested 2 level side navigation menu bar...Just finished 1:23 mins of video and paused to say - thank you brother...I will resume this now 😄

  • @sysonang7755
    @sysonang7755 Місяць тому +1

    Amazing video brother.

  • @DaHooka
    @DaHooka Місяць тому

    Nice build of the component, i would use modern theming and place the site content into a container, set visibility depending on menu item, then you don't need to navigate to different screens, all can happen in one screen. (No duplication of all the components etc.)

    • @CourseElevate
      @CourseElevate  Місяць тому

      When this video was build , Microsoft has not launched the Modern Themes (For modern themes, I am creating crash course on this channel , you can have a look on that as well.)
      Just a doubt, how will you access the navigation when you reach to next screen. I don't know any master header components possibility in Power Apps where you add navigation component at one place and its available on all the screens. let me know if you know that technique. thanks..Vikram

    • @DaHooka
      @DaHooka Місяць тому

      @@CourseElevate you can pass screen information as a property to your header component, no sure if you could pass a collection too

  • @RyanKuy-t4c
    @RyanKuy-t4c 2 місяці тому

    very nice tutorial keep it up!

  • @jdriele
    @jdriele 2 місяці тому +3

    Tips: to avoid gallery refresh do not patch the collection used for the gallery, use anoter collection and read it.

    • @GrEgO169
      @GrEgO169 Місяць тому

      What do you mean by do not patch the collection ? The collection is initialize on start right ? He is not patching anything ?

    • @jdriele
      @jdriele Місяць тому

      @@GrEgO169 I was wrong, he is not patching anything. (my tips stay valid but no applicable here). So why he has a loading refresh when he expands his menu ? I would prefer to play on sub gallery height instead of visible (8:20). By doing that, I will be sure that everything is loaded. Do reduce loading, i would recommend to not use images for navigation (svg are valid btw).

    • @GrEgO169
      @GrEgO169 Місяць тому

      @@jdriele that’s a nice tips I have to say, need to try it in my nested gallery

  • @cagri2979
    @cagri2979 8 днів тому

    colMenu tabel is not creating and PowerApps does not recognize the Parent Menus. I did everything same on the video and now everywhere is full of errors. I didn't understand why

    • @CourseElevate
      @CourseElevate  7 днів тому

      You need to populate the collection. You can copy collection code given in the video description. Put this code in App on start. Then click on App-> three dots -> Run On Start. it will populate the collection. Alternatively just paste this code on Button On select property & in run mode. click the button. it will populate the collection. let me know if still face any challenge, I will help you to resolve this error.

  • @ubaidbaig4232
    @ubaidbaig4232 Місяць тому

    Can anyone tells how to create the database for nested gallery, I mean, this thing we can achieve with one list or we have to create more than one sharepoint list

    • @CourseElevate
      @CourseElevate  Місяць тому

      Create only 1 SharePoint list. See the video description where I have provided Collection for Menu. Create parent-child relationship as I created in ColMenu.
      {MenuName:"Mobile",Screen:Mobile, Id:1, ParentMenu: "Products"},
      {MenuName:"Laptops",Screen:Laptops, Id:1, ParentMenu: "Products"},
      {MenuName:"Smartphones",Screen:Smartphones, Id:1, ParentMenu: "Products"},
      {MenuName:"Desktops",Screen:Desktops, Id:1, ParentMenu: "Products"},
      Here ParentMenu is "Products" and childMenus are "Mobile","Laptops","SmartPhones" and "Desktops". Create Similar structure in sharepoint list. You can consider ParentID instead of ParentMenu Name.. it depends on your requirements.
      Hope it helps..
      Thanks..Vikram

  • @HareKrsn213
    @HareKrsn213 Місяць тому

    How to hide image for the last item in the parent gallery as it does not have any submenu to show.

  • @abhiramch9226
    @abhiramch9226 2 місяці тому

    in data source ColMenu is not showing and items is not visible what to do?

    • @CourseElevate
      @CourseElevate  2 місяці тому +1

      You need to populate the collection. You can copy collection code given in the video description. Put this code in App on start. Then click on App-> three dots -> Run On Start. it will populate the collection. Alternatively just paste this code on Button On select property & in run mode. click the button. it will populate the collection. let me know if still face any challenge.