A relationship between entities in which one acts in a major role and the other in a minor role.

learn more… | top users | synonyms

0
votes
2answers
33 views

Passing an object reference to an anonymous class

I'm having a few troubles with Java programming. In my case, I'm using Hibernate criteria queries through Spring's getHibernateTemplate without having direct access to the session object. I have a ...
0
votes
0answers
12 views

Wordpress custom url category/subcategory/post

I've searched te whole internet to find a solution for realizing the following url. I have a website with an index of skincare companies by city structured. I have a custom post type called: ...
0
votes
0answers
17 views

Managing drag and drop within QTreeWidgets in PySide

I have a QTreeWidget, in which I have the DragDropMode set to InternalMove. This is working as expected, but I need something extra functionality, which I can't find anywhere. Imagine a tree ...
0
votes
1answer
12 views

how do I access a parent attribute of a selected line item in a jquery ui menu

On my html page, I have multiple menus. When a line item is clicked, I want to get the id attribute of the parent anchor tag from the menu where the selection originates. My html and jquery code is ...
0
votes
0answers
21 views

How to get the best children for each parent document in Elasticsearch?

I use a parent/child relationship to store some documents: { "A" : { "properties" : { } } } { "B" : { "_parent" : { "type" : "A" }, ...
-2
votes
2answers
28 views

How to append id attribute by child with jQuery

I have this markup: <div> <span id="01"> </div> <div> <span id="02"> </div> i need to add some id for the div element by their span child, i try it with ...
0
votes
0answers
29 views

MVVM - Ctor fails : Specified element is already the logical child of another element | WPF

I know there are answers to "Specified element is already the logical child of another element" problem but this one is weird. I have two view models; parent being say ParentVM and child being ...
3
votes
3answers
94 views
+50

How to link parent and children to each other?

Having two simple classes; one with only parent attribute, and one with both parent and children attributes. This means that the one with both parent and children inherits from the one with only ...
0
votes
2answers
30 views

How to alert the id of nested div without alerting the id of its parent?

I want to alert the id of the div when I click on it. The code works fine but it also alerts the id of the parent div. How can I avoid that? Here's the code: JSBin Link <div id ="parentDiv"> ...
-1
votes
3answers
29 views

Adapting container height to child's

I'm among the coutless people who are facing the same problem about adapting parent's height to the contained elements. I did some research and found similar questions, but no answer could help me, so ...
0
votes
0answers
16 views

override parent functions.php to include file in child theme

Is there a function that can override: include 'lib/somefile.php'; in parent theme, so that the file exists only in the child theme functions.php. Prefer not to change the function name in the event ...
1
vote
2answers
28 views

Access child nodes of SysTreeView32

This is my next question following Hook into a child class SysTreeView32 of VBE window I can access the SysTreeView32 now but I cant access the child node of the hNode. I have tried many variations ...
1
vote
1answer
53 views

Hook into a child class SysTreeView32 of VBE window

I am pretty new to the WinApi calls although familiar with VBA. What I am trying to do is to hook to a child class SysTreeView32 of VBE window (Project Explorer TreeView). I would like to ...
0
votes
0answers
33 views

Zooming a panel with multiple children - C#

I have am building a program that basically lets you create a document by dragging and dropping components, built in C# Windows Forms. The document's "canvas" is a panel, and all the elements of the ...
0
votes
1answer
37 views

TSQL recursive query help parent-child

I'm trying to build a t-sql query that will return parent and its child accounts in the same table based on a roll-up input. Can someone please assist? ***TABLE:USERS*** UserId ParentId 66 ...
1
vote
1answer
45 views

Action Script. removing object from container when another one hits it

I am making a horizontal side scroll game in which the objective of the player is to get as far as he possibly can in the game. In order to play the game, the player will have to jump over objects ...
0
votes
0answers
39 views

How to change the background of ImageView in child view of Expandable ListView at run time

I have an Expandable listView in which data is populated from Xml file after parsing. My custom Adapter namely NewAdapter populate the content in Expandable list. My problem is arises from ...
0
votes
0answers
3 views

Schema.org : Setting the parent of nested property - Possible?

My terminology may be way off, but I think this simple little blob will explain: [ Schema.org object 1 ] [ Schema.org object 2, which is a property of "object 1" ] [ Property One ] Is ...
-3
votes
0answers
30 views

Piping multiple values from children to single parent and performing operations

I recently received an assignment that requires me to take values from a number of files passed by the user, then obtain numbers the numbers from each file with a separate process and calculate and ...
0
votes
1answer
25 views

Python Child/Parent classes, Child Class Returning String Twice?

Easy question and probably very obvious to one of you, but Im unsure of why this happends. So here are the three python files Ive made. Main Char class: class Character(): """ This is the ...
-1
votes
1answer
69 views

How do I create a multi-dimensional array structure from a flat file of tab-delimited parent/child relationships?

Title isn't great, but I think I can explain better what I want to achieve like so: Given a flat file: MAIN 0 Sub Heading 0 Sub Heading 1 MAIN 1 Sub Heading 0 Sub Sub Heading 0 Sub Sub ...
0
votes
1answer
17 views

attach Child Window at the bottom of it's Parent

I'm having a little trouble with win32 API, C language. So, this is what's happening: I need to make a Child Window to stay on the botton of it's Parent Window, like a footer. I'm using math to ...
-1
votes
0answers
10 views

Tree structure sql query CTE

My table is like this ID Level Parent Date 36 7 NULL 12-12-12 37 6 36 12-12-12 38 6 36 12-12-12 39 6 36 12-12-12 40 5 37 12-12-12 41 5 ...
0
votes
2answers
28 views

Rounded Corner Cut-Out with Border; Subtract border size from width and height of child element

I've almost got it but I'm stuck on one thing. I'm trying to make the child p tag fluid to the parent div's width and height. I just can't figure out how to get the p element slightly smaller (by 4px ...
0
votes
1answer
54 views

inline-block fluid layout, child content will not expand parent container

I asked a question earlier on here pertaining to a fluid 3 column layout I'm developing in a custom drupal front page and contributors suggested I switch from absolute container divs that use margins ...
0
votes
0answers
36 views

Expanding parent container from absolute child that gets it's size from parent

I am working on my first drupal site and although I have good web programming skillz (css, jscript, php) I'm trying to follow drupal markup using their templates as completely as possible. My problem ...
0
votes
1answer
34 views

Alter CSS Style for Elements Within a Link

Please bear with me as I try to explain what it is I am trying to do... I have a grid of icons that will eventually become a custom-made service request page - each icon represents a different type ...
1
vote
1answer
27 views

How can I simplify this jQuery caption based alert code?

I am having problems making my jQuery code more efficient for a complex application I am writing. Is there a way to make this code work better? The multiple parent() functions can't, surely, be the ...
0
votes
2answers
26 views

call overwritten parent function from a child in php [duplicate]

How is it possible to call a overwritten parent function recursively from a child instance? Since I'm not using static methods I can't use parent::method() but have to do somehow different. I have a ...
1
vote
1answer
29 views

Retrieving all descendants of an Id in SQL Server

I have a parent-child (many to many) table which holds workgroup_id and parent_id (a workgroup may have more than 1 parent). I need to insert into a destination table all the descendants of each ...
1
vote
1answer
24 views

rallydev - query for custom grid - how to show tasks where work product is tagged

I am trying to create a query for a custom grid. I want to show all tasks where the work product (user story the tasks belong to) is tagged with a specific tag. For example: US101 - Build a house ...
0
votes
1answer
24 views

Accessing Control in Master from User Control

I want to access a control which is declared in a master page from a user control . How do i access it using conventional FindControl() from my user control? ps: For now I can access it using ...
0
votes
2answers
48 views

How to resize parent div while keeping dynamic child divs 100% height

How can I set up a group of 3 divs (dynamic size and visibility) to automatically fill (height) a specific space on the page. For example I have so far created: <div id="container"> ...
0
votes
1answer
18 views

Child Process with parent's ID

I am working in Windows 7 environment with C++ as source Language. Following is what I am trying to achieve: a batch script invokes "MyBinary" This binary spawns a child process "myBinary" should ...
-1
votes
0answers
35 views

Create Parent Child Class

This is my first time posting on stackoverflow and this is what I am trying to figure out. So the problem is that I don't know how to create the C# class. I know that i need to create a main class ...
2
votes
2answers
54 views

Many-to-Many parent child repeater, data relation c#

I am trying to set up a scenario with nested repeaters in which I have a multiple different categories with multiple children displayed under them. The trouble is this, the parent table and child ...
0
votes
0answers
16 views

List Containing Children & Parent Objects Are Just Parent Objects on Submit

I have a List that contains both parent and child objects, my editor templates work on the view but on submission, all objects return just as parent objects.
0
votes
0answers
34 views

Chrome not showing parent/child divs, Firefox and IE OK

I am currently building a website. I am currently working on the You Tube video feed and a range of blocks to the right. I have done the html and the css and this works on Firefox and IE browsers I ...
0
votes
3answers
35 views

remove one child and select another one

I have this html code: <div id="step-1st"> <pre style="display:none"></pre> <textarea></textarea> </div> I like to remove textarea and show the pre with the ...
2
votes
0answers
41 views

Mondrian | Parent Child Hierarchy is not working properly

I have created a dimension with parent-child hierarchy as follows - <Dimension type="StandardDimension" visible="true" foreignKey="ContextID" highCardinality="false" name="Learning ...
5
votes
1answer
43 views

Parent/Child Generics Relationship

So, I'm trying to have a parent/child class relationship like this: class ParentClass<C, T> where C : ChildClass<T> { public void AddChild(C child) { ...
0
votes
7answers
41 views

checking if a span tag is inside of a link

I'm trying to get all spans with the class "blah2" that are not children of links. For example, I want both of these guys: <a href="nowhere.com"><span class="blah1"><span ...
0
votes
5answers
40 views

How to add childview programmatically in iOS?

I have googled for many days but don't find out. I just know how to do by IB, but not by programmatic way. I think [addsubview:view] is just only add sibling view, not parent-childview. Thanks guy for ...
0
votes
2answers
26 views

PHP - change index of parent in multi-dimensional array to child array value where key = string

I've got an multi-dimensional array at the moment and want to remove the second-level of arrays and have the value of that second level as the new index value on the parent array. My current array is: ...
0
votes
1answer
35 views

Entity Framework - updating sum of related entity collection property values on parent entity

How can I effectively update the parent EntityObject property which is there to expose only the sum of the related child entity collection property? I need an update in parent any time there is a ...
1
vote
1answer
26 views

expected result not getting

i have three tables which are shown in this demo: sql fiddle demo These are expected conditions and result Here you can check this activity_id and region_id in demo and get unit_id As ...
0
votes
0answers
8 views

Query children of current custom post type

I have a custom post type called "Club" I also have a child custom post type for Clubs called "Project" I want to display the children (Projects) on the single page of the parent (Club). At the ...
0
votes
0answers
42 views

VB.NET Borderless Child Form: Border short visible

my program use some borderless child Forms. Call frm.FormBorderStyle = Windows.Forms.FormBorderStyle.None frm.TopLevel = False frm.MdiParent = Me frm.Dock = DockStyle.Fill frm.Show() In the ...
0
votes
1answer
28 views

how to combine these two query

this query is works for activity $query1 = "select t.entity_id, t.parent_id, t.length,gu.measurement_unit_id from tree t left join units u on t.parent_id = u.region_id and ...
0
votes
1answer
22 views

Alternatives to a UNION query in Access 2010 Web Database

I need to assign one of multiple parent types to a single child item. The problem I encounter is that in an Access 2010 web database I cannot create a Union query to bring all the potential parents ...

1 2 3 4 5 28