Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
7answers
570 views

In C# 4.0, is there any way to make an otherwise private member of one class available only to a specific other class?

We're creating an object hierarchy where each item has a collection of other items, and each item also has a Parent property pointing to its parent item. Pretty standard stuff. We also have an ...
8
votes
5answers
141 views

Best method to fit a child div to its parent's width?

I'm looking for a easy way to fit a child div into it's parent's width. Most solutions I've seen here are not cross-browser compatible (eg. display: table-cell; isn't supported in IE before version ...
8
votes
2answers
2k views

how to retrieve parent node using xquery?

I am using xml and xqueries.I usually use an xpath expression relative to a parent node to retrieve its child node. But, I am not sure how to do the opposite meaning if I have a child node, how do I ...
7
votes
12answers
18k views

Representing parent-child relationships in SharePoint lists

I need to create some functionality in our SharePoint app that populates a list or lists with some simple hierarchical data. Each parent record will represent a "submission" and each child record ...
6
votes
3answers
104 views

Start new process, without being a child of the spawning process

How would I go about starting a new process without it being the child of the calling process. Example: Main Program (Caller.exe) process.start("file.exe")
6
votes
3answers
2k views

Ruby on Rails: Creating child objects

I'm sure this is a very simple question, but I'm just a newbie so... I have a model, Game, which has_many :piles. Pile, in turn, has_many :cards. I'm able to populate the Piles and Cards at creation ...
6
votes
1answer
3k views

Are child processes created with fork() automatically killed when the parent is killed?

I'm creating child processes with fork() in C/C++. When the parent process ends (or is killed for some reason) I want all child processes to be killed as well. Is that done automatically by the ...
6
votes
2answers
7k views

Why isn't my NHibernate bag collection setting the 'parent id' of the children dynamically?

I have a new object with a collection of new objects within it on some property as an IList. I see through sql profiler two insert queries being executed.. one for the parent, which has the new guid ...
5
votes
4answers
65 views

How to target HTML element from a specific class of a BODY element

Using Drupal, the theme has a background color assigned to the <HTML> element. I'm creating a separate print CSS for ONE particular page, and wish to remove the background color ONLY for this ...
5
votes
4answers
246 views

How to query a MySql table to display the root and its subchild.

UserID UserName ParentID TopID 1 abc Null Null 2 edf 1 1 3 gef 1 1 4 huj ...
5
votes
3answers
821 views

What happens to a SIGINT (^C) when sent to a perl script containing children?

I have a Perl script that forks. Each fork runs an external program, parses the output, and converts the output to a Storable file. The Storable files are then read in by the parent and the total ...
5
votes
1answer
4k views

Entity Framework - Inserting records in child table when parent record already exists

Good afternoon- I am developing a Silverlight application using LINQ to Entity Framework for the data access layer. My n-tier database model includes about 30 or so tables, with a number of ...
5
votes
2answers
629 views

Reap children without setting $SIG{CHLD} to IGNORE or to a custom signal handler

I am trying to write a socket server that forks for every connection. I have been successful except for one small caveat: my child processes use Net:OpenSSH->capture2() which requires that $SIG{CHLD} ...
5
votes
2answers
412 views

Called child´s constant not available in static function in parent

I have a static function in a class that needs to be called from several child classes. I need a constant from the calling child class to be available in that function. To have these constants ...
4
votes
2answers
89 views

Weird behavior of parent-child-child threaded program

I have a doubt regarding the program copy-pasted below. I am explaining my understanding of the program here: In this program, the parent creates a child and waits for it complete. Then, the child ...
4
votes
1answer
145 views

Ninject: give the parent instance to a child being resolved

I have this class hierarchy: public interface ISR { } public class SR : ISR { public SR(IFI fi) { FI = fi; } public IFI FI { get; set; } } public interface ICU { } ...
4
votes
1answer
416 views

Generics and Parent/Child architecture

I'm building an architecture with inheritable generics and parent-children relations. I have one major problem: I can't make both the child and the parent aware of each other's type, only one of the ...
4
votes
1answer
354 views

PHP: “Call to undefined method” error when calling static method from parent

How is the correct way to call a child class method from a parent class if both are static? When I use static classes it returns the error "Call to undefined method A::multi()", however when I use ...
4
votes
1answer
250 views

Multiple children in single form in rails

I have a model that has an arbitrary number of children entities. For simplicity lets call the entities Orders and Items. I would like to have a create Orders form where I input the order information, ...
4
votes
1answer
1k views

How to find position number of a certain child element in a parent element using jQuery

I have a div containing several other divs containing an image. It looks smth like this <div id="parentHldr"> <div class="imgHldr"><img src="foo/bar.png" id="1"></div> ...
4
votes
2answers
159 views

How can I create a parent/child relationship with the same object with AutoPersistenceModel

I have the following class in my project public class ProductCategory { public virtual Guid Id { get; set; } public virtual string UrlSlug { get; set; } public virtual string Title { get; set; ...
4
votes
4answers
2k views

How to specify the parent query field from within a subquery in mySQL?

Is there a way to specify the parent query field from within a subquery in mySQL? For Example: I have written a basic Bulletin Board type program in PHP. In the database each post contains: id(PK) ...
4
votes
1answer
315 views

What is the correct way to change properties in a parent form from a child form?

I was just wondering if I'm doing this the correct way. I have 2 forms a parent form and a child form (options dialog). To change a property in my parent form from my child form I use code like this: ...
4
votes
3answers
546 views

MS ACCESS - Hierachical tree sort

I'm struggling with a sorting problem. I've got a table which is as follows: aspect_id (int) aspect_text (memo) root_id (int) which has as a foreign key a aspect_id I've got a non cyclic tree ...
4
votes
4answers
3k views

How to terminate all [grand]child processes using C# on WXP (and newer MSWindows)

Question: How can I determine all processes in the child's Process Tree to kill them? I have an application, written in C# that will: Get a set of data from the server, Spawn a 3rd party utility to ...
4
votes
3answers
6k views

NHibernate: Delete a child record from the parent collection

I'm developing a sample application so that I can learn the ins and outs of NHibernate. I am struggling with a delete issue. I wish to be able to delete a child record by removing it from its parent’s ...
3
votes
4answers
93 views

C++ function in parent return child

To be honest, I don't really know, how to ask this question, so please don't be mad :) Anyway, I want to have the mutators (setters) in my class to return this to allow for jQuery-like ...
3
votes
5answers
49 views

jQuery: Click on *only* this element

In the highly-artistic drawing above, the green square is a child of the pink one. The pink one is wrapped around the green one by my function, so the green square could be anything - a hyperlink, ...
3
votes
4answers
444 views

Python - Have parent thread handle child threads Exception

Is there a way to have the parent that spawned a new thread catch the spawned threads exception? Below is a real basic example of what I am trying to accomplish. It should stop counting when ...
3
votes
5answers
406 views

Is there any way to have opacity apply to absolutely positioned child elements in ie8

In most browsers, when an html element is only partially opaque, its children "inherit" this opacity. (It isn't quite inheritance--more correctly, the entire image is assembled, including the parent ...
3
votes
2answers
422 views

PHP static variables in an abstract parent class: question is in the sample code!

Quick code with the question included: abstract class ClassParent { public static $var1 = "ClassParent"; } class ClassChild1 extends ClassParent{ public static function setvar1(){ ...
3
votes
2answers
606 views

Rails - Parent/child relationships

I'm currently using a standard one-to-one relationship to handle parent/child relationships: class Category < ActiveRecord::Base has_one :category belongs_to :category end Is there a ...
3
votes
4answers
284 views

Is circular reference between business objects (in hierarchy) common?

Linq-to-Sql classes give both a parent a reference to a child collection, and also the child a reference to the parent (single or collection). This allows one to "drill" in both directions, and seems ...
3
votes
3answers
623 views

C++: Accessing parent methods and variables

In which way should I access this parent method and parent variable? class Base { public: std::string mWords; Base() { mWords = "blahblahblah" } }; class Foundation { public: Write( ...
3
votes
2answers
260 views

Parent Child Relationships with Fluent NHibernate?

I would like to create a cascading tree/list of N number of children for a given parent, where a child can also become a parent. Given the following data structure: CountryType=1; ColorType=3; ...
3
votes
1answer
446 views

Any way to stop CSS :hover text-decoration underline on child? [closed]

Possible Duplicate: How do I get this CSS text-decoration issue to work? I'm using the jquery toggle effect to show or hide more information about list elements: ...
3
votes
1answer
69 views

Trying to acquire the parent's class of an element using JQuery

So I have acquired the element I want, but I want to check the elements parent class value to verify it is a certain value before doing my logic and I can't quite figure it out. ...
3
votes
2answers
307 views

Ruby on Rails: Building a child with default values when its parent is created

I have a parent and child model relationship. In the child's migration.rb, the child model's columns each have default values (except the parent_id column). When I make a new parent object, how can I ...
3
votes
2answers
505 views

python: simple approach to killing children or reporting their success?

I want to call shell commands (for example 'sleep' below) in parallel, report on their individual starts and completions and be able to kill them with 'kill -9 parent_process_pid'. There is ...
3
votes
5answers
142 views

php - adding elements to other elements

I have been using .net for the past couple of years, and I like the way you can add controls at any point in the page from anywhere. For example, you can say Head.Controls.add(new LiteralControl("")) ...
3
votes
2answers
744 views

How to call javascript function of child page from master page javascript

I am writing an ASP.Net application. I am making use of master page in it. I have several child pages with me, which consist of some java script functions; Let's say; function ChildPageFunction() ...
3
votes
5answers
586 views

method_exists in parent class php

I'm trying to use the php function method_exists, but I need to check if the method exists in the parent class of an object. so: class Parent { public function myFunction() { /* ... ...
3
votes
1answer
446 views

recursive self query

I have the following table: myTable: +----+----------+ | id | parentID | +----+----------+ | 1 | null | | 2 | 1 | | 3 | 1 | | 4 | 2 | | 5 | 4 | ----------------- ...
3
votes
2answers
379 views

Jquery - Immediate children

I have a structure like this: <ul id="mycustomid"> <li><a>Item A</a> <ul class="children"> <li><a>Child1 of A</a> ...
3
votes
1answer
460 views

NHibernate- Prevent deletion on a particular entity (i.e. make read-only)

How can I prevent NHibernate from deleting a single entity of a specific class? A programmatic way I am using at the moment entails checking for the entity's unique field "Name". Here's the scenario: ...
3
votes
3answers
462 views

How do I select one parent row and additional rows for its children without a UNION?

I have a parent and child table and want to create a select statement that, given a parent id, returns a row for that parent and additional rows for every child. Doing a left join is not giving me a ...
3
votes
2answers
1k views

Navigate dom using jquery to get at specific elements

I am trying to use jquery's parents/siblings to find particular input elements but I cannot seem to get this right. I have the following HTML: <div id="ExtrasOptions"> <div ...
3
votes
3answers
563 views

Checking existence of lazy loaded child without getting/loading in Fluent NHibernate

This should be easy, but I can't seem to figure it out... How can I check if a child on an entity exists without actually getting or fetching it? The child is lazy loaded right now.. so I have two ...
3
votes
4answers
2k views

Wordpress: Can one page have two parents?

I am developing a small site using Wordpress.org and would like multiple parents to share a child page. The purpose is that users coming to the site will for example associate "Rental Assistance" ...
3
votes
2answers
1k views

Best practice for Parent / Child UI design in ASP.Net?

Coming from a desktop client background, with no real data-driven web design experience, I am studying ASP.NET UI design to determine the best UI pattern for Parent/Children data. I always tend to ...

1 2 3 4 5 14