Top "Nested" questions

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

WPF: How to bind to a nested property?

I can bind to a property, but not a property within another property. Why not? e.g. <Window DataContext="{…

wpf binding properties nested
Forward declaration of nested types/classes in C++

I recently got stuck in a situation like this: class A { public: typedef struct/class {…} B; … C::D *someField; } class …

c++ class nested forward-declaration
CSS: position:fixed inside of position: fixed

Okay, I've noticed something, but couldn't find it in the CSS spec. Styling an element with position: fixed will position …

css nested
How to access deeply nested dictionaries in Swift

I have a pretty complex data structure in my app, which I need to manipulate. I am trying to keep …

dictionary swift nested
How to use <h:form> in JSF page? Single form? Multiple forms? Nested forms?

I am using the Facelet Templating Technology to layout my page in a JSF 2 app that I am working on. …

forms jsf jsf-2 nested
Cannot access field in Big Query with type ARRAY<STRUCT<hitNumber INT64, time INT64, hour INT64, ...>>

I'm trying to run a query using Standard SQL Dialect (ie not Legacy SQL) on BigQuery. My query is: SELECT …

sql nested google-bigquery
Best way to create nested HTML elements with jQuery

If I need to create a couple of nested DOM elements, I know one way to do it, is to …

javascript jquery dom nested
Javascript "this" pointer within nested function

I have a question concerning how the "this" pointer is treated in a nested function scenario. Say I insert this …

javascript function nested this
Enum within an enum

This isn't a matter of me being stuck, but rather I'm looking for a tidy way to write my code. …

java enums nested
Why/when should you use nested classes in .net? Or shouldn't you?

In Kathleen Dollard's 2008 blog post, she presents an interesting reason to use nested classes in .net. However, she also mentions …

.net class nested fxcop