Tagged Questions

0
votes
3answers
25 views

Margin on child element moves parent element

I have a div (parent) that contains another div (child). Parent is the first element in body with no particular CSS style. When I set .child { margin-top: 10px; } The end re …
0
votes
0answers
2 views

Nesting datasets with TClientdatasets in more than two levels?

Hi I would like to know if it is possible to nest a dataset within a dataset and then nest this data set with in another dataset. Therfore 3 levels of nesting. Currently I only ma …
0
votes
3answers
754 views

Right Float and container div

Hi, I have 3 divs in a container div. The first is floated left, the second is floated right and the last sits in the center. This creates 3 approximately even divs across a conta …
0
votes
0answers
13 views

Nesting of xsl:key() within xsl:key() & combining results of xsl:key()

Hi all, I have 2 unrelated questions. I need to do a grouping of data using XSLT. I need this to function like how a nested IF within an IF would function. After which, I need to …
8
votes
14answers
486 views

Which is better coding style?

During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I thi …
1
vote
3answers
136 views

How to make this ruby method less ugly (nesting)

I have a helper method that creates navigation links for some controllers. def gen_associations(controllers) content_for :leftnav do sorted_controllers = controllers.s …
0
votes
2answers
35 views

jQuery Nesting Events

Sometimes in my jQuery scripts they don't work unless I nest the events. For example... $(selector).click(function(){ //do something such as create an element $(selector). …
6
votes
9answers
217 views

When would you want to nest classes in C#?

Specifically, can anyone give me concrete examples of when or when not to use nested classes? I've known about this feature since forever, but never had a reason to use it. Thank …
0
votes
3answers
59 views

Delimiting four nested items in Javascript/Html

Okay this is frustrating me to no end. I recently coded a page in JS for a buddy of mine who wants to display wedding pictures to a family to see which ones they'd like to purchas …
1
vote
2answers
145 views

How to release an NSMutableDictionary Instance Variable properly, with nested dictionaries, in Objective-C?

I have an Objective-C class that looks something like: @interface myClass : NSObject { NSMutableDictionary *aDict; } Its setter method looks like: - (void) setADict: (NSMut …
1
vote
3answers
280 views

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 it absolutely, with respect to the browser viewport. What …
1
vote
2answers
88 views

Simple C# Question: Nesting Classes, Accessibility

I know this is probably simple, but I can't seem to figure out if it's possible to do this. I have the following code: public class A { thisMethod(); public class B { …
0
votes
0answers
32 views

make a nested file from a flat file data

I am newbie for coding and I looking for simple solution for conversaton of the flat file (4 columns) like A-data//A-ID//B-data//B-ID sample1//123//sample2//456 where A-ID have a …
1
vote
5answers
5k views

Best way to do nested case statement logic in SQL Server

I'm currently writing an SQL Query, where a few of the columns returned need to be calculated depending on quite a lot of conditions. I'm currently using nested case statements, b …
2
votes
1answer
105 views

Binding multiple related variables in Clojure without nested let

I want to use the value of a variable to compute the value of another variable in the same let statement. Is there a way to do this in Clojure without using nested lets? Nested le …

1 2 next
15 30 50 per page