Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1935
Can a grid be placed within a grid cell...
posted

So before I put too much work into building this app, I wanted to ask someone in the know if anything here appears problematic with the GridView.

I'm planning on having custom cell headers and cells as shown here...

And basically structure the app like this below.

The particularly tricky part I'm concerned about is the 3rd section shown in blue outline below.

That section needs to be able to swipe left and right, populating a grid for each swipe (left/right).

Can I put a GridView inside a ScrollView inside a GridView cell?

Can I expect decent performance?

Parents
  • 40030
    Offline posted

    Hi David, 

    Sure you can do that. We actually nest grid Viiews  throughout the samples browser. 

    I even wrote a blog post that does this : http://ko.infragistics.com/community/blogs/stevez/archive/2012/11/13/creating-a-netflix-style-ios-grid.aspx

    One thing i would change is to use another GridView in place of your scrollView. The reason i suggest this, is that way the nested grids are virtualized. If you use a scrollView, then all of those grids will get loaded at once. 

    -SteveZ

Reply Children