Top "Nested" questions

This tag relates to any of various nested entities or operations in programming.

ViewPager with Nested Fragments?

My problem According to the Google's docs: You can now embed fragments inside fragments. This is useful for a variety …

android android-fragments nested android-viewpager fragmentpageradapter
Jquery UI Nested Accordion with Content in top level Accordion

I'm trying to create a navigation menu that contains multiple level of organization. I'm building a nested jQuery UI Accordion …

jquery user-interface nested accordion
Laravel: Querying and accessing child objects in nested relationship with where clauses

I am trying to access the child objects of nested relationships that return many results from the parents object. Let's …

laravel nested eloquent relationships
Understanding View Controller Nesting in iOS

Ive been tearing my hair out over the last couple of days trying to understand this one seemingly basic concept …

ios cocoa interface nested viewcontroller
Searching for the best PHP nested sets class (PEAR class excluded)

I'm looking for a PHP (with MYSQL) nested sets class with all needed functions. For example: createLeftNode, createRightNode,createRootNode, createSubNode,…

php class nested set nested-sets
Create and lookup 2D dictionary with multiple keys per value

I think I want to make a 2D dictionary with multiple keys per value. I know how to make a 2…

python dictionary nested key defaultdict
Nested IF statements in Excel [Over the 7 allowed limit]

I am trying to create a spreadsheet which automagically gives a grade to a student based on their marks they …

excel vba if-statement nested worksheet-function
php - Nested Loop, Break Inner Loops and Continue The Main Loop

I have the following loop and I want to continue the while loop when the check inside the inner loop …

php loops nested break continue
Django nested transactions - “with transaction.atomic()”

I would like to know if I have something like this: def functionA(): with transaction.atomic(): #save something functionB() def …

django transactions nested atomic
nested struct initialization literals

How can I do this: type A struct { MemberA string } type B struct { A MemberB string } ... b := B { MemberA: "test1", …

struct go nested literals