Sunday, July 11, 2021

PowerApps: Pagination Part-2

 Hello Friends,

Welcome back with another post on PowerApps. In last post we were discussing about creating pagination in PowerApps. You may visit my last post by clicking on below link-

  1. PowerApps: Pagination Part-1

We have successfully fetched first record, last record and fetched all records from SharePoint list. Now we will create Welcome Screen.

  1. Click on Home >> New Screen >> Blank Screen. Give name "ScreenWelcome".
  2. Click on Home >> New Screen >> Blank Screen. Give name "ScreenGridView".
  3. Click on Home >> New Screen >> Blank Screen. Give name "ScreenTableView".
  4. Click on Home >> New Screen >> Blank Screen. Give name "ScreenGridViewNum".
  5. Now click on ScreenWelcome and add 3 buttons.
    1.  

  6. Now choose the "OnSelect" property of btnGridLayout and add below code
    1. Navigate(ScreenGridView,None);
      
  7. Now choose the "OnSelect" property of btnTableLayout and add below code
    1. Navigate(ScreenTableView,ScreenTransition.CoverRight)
      
  8. Now choose the "OnSelect" property of btnGridLayoutNum and add below code
    1. Navigate(ScreenGridViewNum,None);
      
  9. This way we have created the first screen from which we will control the navigation to rest screens.
  10. In next post, we will create the first major screen where we will implement pagination (Previous/Next) on Gallery.
With this, I am concluding this post.
Happy Coding !!!
Will see you again with some new topics.

Stay Safe !
Stay Healthy !

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.