In an oriented tree, the parent is the previous node before the node of interest. The word parent can then be used in countless abstractions of computer science. The container of contained graphic or logic items can be called a parent. The inherited class in OOP can be called the parent.

learn more… | top users | synonyms

0
votes
3answers
17 views

if Innerhtml length is greater, add class to its element

i want it to control the text length inside every LI A, and if its greater than 5, then automatically add a class 'long' to its corresponding LI. So far i have this, but not working: html: <ul ...
1
vote
2answers
56 views

How to change parent style by child :hover action in LESS

I have this LESS setup: .wrapper { .parent { height: 100px; .children { //some style; &:hover { .parent & { height: ...
2
votes
1answer
31 views

setting tab index for children in knockout binding

I have a table data bound using knockout. Here, I have parent-child like rows. e.g. <tr> <td> <select ...
1
vote
3answers
31 views

How to get the content outside of an element

Below is my code, my goal is when the user clicks the button with a class named click_me, I want to alert the content inside the class named content. I've tried doing: JS: ...
0
votes
0answers
20 views

Setting MaxHeight on ListBoxItem to ListBox ActualHeight

I have a custom control in a ListBox. I set the ListBoxItem's MaxHeight to the ListBox's ActualHeight: MaxHeight="{Binding ActualHeight, RelativeSource={RelativeSource Mode=FindAncestor, ...
0
votes
0answers
9 views

trigger Jquery a page that has an iframe that calls another page and in this event to refresh in Jquery that is on the parent page

Friends, I would like to recall one jquery which in pag: master.aspx after a event of a child page inside of iframe of this master.aspx (I will try explain in detail below): <link ...
0
votes
0answers
15 views

WP8 C# how to call from a user control to its parent (ListBox)

I have a user control within a dataTemplate of a ListBox, and what I am trying to do is to let the user dismiss/remove this item from the listbox by dragging the user control side way. everything ...
0
votes
1answer
21 views

How to get windows batch's parent folder

I'm writing a batch file, I need to get the parent folder of this bat file. Is it possibile? NB I mean the parent folder of the batch file not of the current directory of the prompt calling that ...
0
votes
1answer
26 views

Oracle sql ORA-02291 parent key not found

I have a copied table: CREATE TABLE d_clients_copy As SELECT * FROM d_clients; Only data structure and values are copied, constraints not. So I am adding the Primary Key to the newly created data ...
0
votes
5answers
44 views

Find parent div in specific class name

I have many different div name and each div have same div with the same class name. Example : <div class="block1-1"> <div class="block1-11" ...
0
votes
0answers
18 views

PyYAML load into xml.etree.ElementTree

I'm a newbie of pyYAML, and even of Python. I want to load a YAML config into a xml.etree.ElementTree object. But I totally have no idea how to implement the constructor. actually, the one thing I ...
0
votes
3answers
23 views

c++ how to assign a pointer to a parent in a binary tree

i'm confused on how you initialize the m_parent to point to the node above the child. class Node { public: Node(string city); ~Node(); string m_city; int m_parent_distance; ...
0
votes
2answers
24 views

Mother class attribute return NULL

I work on php Object and i have a problem, i try to call an attribute (wich is an object) from a mother class, and it's null. I'll show you my problem : Class A { protected $attribute; ...
0
votes
1answer
21 views

How to alter the class of a coredata entity to a subclass

I have a coredata model with a parent Entity type, and other Entities which are subclasses of the parent. During runtime, I am first creating entities which are instances of the parent class. Later ...
1
vote
1answer
31 views

Can't get parent view from fragment

I need to update a textview from a ListFragment that is on the same plane in the XML file as the TextView. But both trys just returns null: @Override public void onCreate(Bundle ice) { ...
0
votes
0answers
17 views

Change target attribute of form tag from iframe source page

I've a page, PopUp.aspx, that is opened in a new window. This page has a iframe whose src is set in code behind (as this would be used for various pages). In one example, the src is set to a login ...
1
vote
3answers
43 views

Android RelativeLayout and childs with layout_width=“match_parent”

How Android calculates the size of a View when I have two Views at the same "row", one with width="fill_parent"? Example: <RelativeLayout ...
0
votes
1answer
15 views

Is it possible to parent to only one or two axes in Blender?

I'm in the process of creating a 2d platformer using the Blender Game Engine. I'm having trouble getting the camera to follow my character and keep him in the center of the screen. Initially, I tried ...
0
votes
1answer
25 views

recursively rename child folder with parent folder using command line [closed]

I am trying to rename some child folders to include the name of their immediate parent folder. I would then like to take said renamed child folder and move them to the grand parent folder and delete ...
0
votes
1answer
38 views

XSLT adding new element to current node

I have a xml and I am trying to add a new element then assign the value on certain conditions. Everything is working fine. However, it seems to adding the new element to the parent node. Can someone ...
0
votes
1answer
20 views

Animation doesn't show when application starts

I have a main activity which keeps 2 fragments. On the first fragment i call an animation from the main activity. If i call it from a button it animates and everything is ok If i try to call it ...
0
votes
0answers
26 views

Linq Join, Group & Select parent column

How do I translate this query into Linq : SELECT b.xxx, b.yyy, SUM(a.zzz) AS total_zzz FROM t_abc AS a JOIN t_def b ON a.id = b.id AND a.id2 = b.id2 AND a.id3 = b.id3 WHERE a.date BETWEEN ...
0
votes
0answers
15 views

How do I hide a parent if div does not contain content?

I have a script that matches user input to filter and hide parents with divs containing that content. I want to use this same script to hide parent that do NOT contain the inputed content. I tried ...
3
votes
1answer
44 views

How to determine if a method is defined in an ancestor class of an object in Smalltalk

Ok, so I am working on a school assignment in Smalltalk and basically the gist of it is that I am writing 3 classes that "manually" set and override methods. The class MyObject is wrapped in another ...
1
vote
1answer
26 views

Grabbing CreationDate of Defect Objects

How can I find the CreationDate of a Defect Object in rally? I have an array of defects objects, and I am able to find all the attributes of defects by doing the following in a loop: project = ...
0
votes
2answers
22 views

how can I fadeOut a Parent?

This is what I've got so far. -HTML- <div id='parent'> <h3>Header</h3> <p>Body Copy</p> </div> -Script- $("#b_submit").click(function() { ...
-1
votes
0answers
16 views

scrolling parent page whit mousewheel when iframe is pointed

I've following problem: I've a parent page, in which all the aothr pages are opened in an iFrame when clicking on a menu-item. The problem is that when the mouse is pointed on the iFrame section, that ...
-1
votes
5answers
32 views

Jquery target parent up two levels checkbox

I am having a problem trying to access a checkbox a few levels above my span. <div class="control-group"> <input type="checkbox" name="employed_now" id="employed_now" ...
0
votes
2answers
23 views

jQuery modify image's parent a tag depending on image src

I have a page that loads an image at random. With jQuery, I'd like to check the image's src and, depending on what that src contains, modify the href of the image's parent a tag. Here's what I've ...
0
votes
0answers
14 views

jQuery Fancybox and pass of variables

i have this <form id="form" action="javascript:parent.$.fancybox.open({href : 'reserva.php?funcio=ryry', type: 'iframe'});" method="post"> ...etc.. this open a fancybox window ...
0
votes
0answers
47 views

Dropdown selection cleared in parent window on refresh of partial child window MVC 4

I am currently loading a screen (parent window) with a partial child window that contains data being pulled from a database. In the parent window there is a dropdown (Being populated with data from ...
0
votes
3answers
33 views

jQuery to DETECT the PARENT at unknown level above?

How to detect the parent at unknown level above? For example: <div id="parent-a"> <....> <....> <div class="the-child" /> <!-- Comment 1 --> ...
0
votes
1answer
55 views

jquery button onclick get parent select option selected

I am trying to get the value of a parent when clicking a button: The HTML part: <td> <select> <option value='2' >Administrator</option> <option ...
0
votes
3answers
178 views

JQuery: How to clone an element into it's own child

I'm working on a mobile-menu (based on this) where I want to clone a parent [LI] element into it's own child [UL], after an element with a specific class. Problem 01: The first problem is that I can ...
1
vote
1answer
15 views

Animations continue to run even when the control is detached from its parent

Is this intended behavior? If I have a Label animating across the screen and I remove it with canvas1.Children.Remove(label) it seems that the animation continues to run behind the scenes and even ...
0
votes
1answer
29 views

Show content if child of a specific page

I am building a website in WordPress and have a set of photos that display along the top of the page (in the background) and have them to where the set of photos can change depending on where the ...
0
votes
3answers
30 views

jquery select an element within parent

I have the following html: <div> <div class="A">Some details</div<> <div class="B">Some details</div<> <div class="C">Some details</div<> ...
3
votes
3answers
36 views

jQuery: parent() times 3 - how to avoid stacking of parents if I don't know a selector

I couldn't find a quick answer to this problem … I'm inside a click-event and using $(this) I'm trying to select an element three levels up without knowing what selector it has. ...
-2
votes
3answers
41 views

How to open only some links in a iframe on the parent window

i have an iframe on a page which opens a calendar application, in this application, I have some links that are of the app itself, while some other links should open in the parent window. using: ...
1
vote
1answer
70 views

Binary search tree level order with parent node

Hi I am trying to print out level order of a binary search tree in the format (node element, parent node element). I am currently using queues to get the level order but I am having a hard time ...
0
votes
3answers
35 views

Jquery .children() — parent has unique class, child has nonunique class, select child

I have a form generated by a CRM. <fieldset><legend>Publish Name in Newspaper </legend> <div class="crm-section custom_67-section"><div class="label"><label> ...
0
votes
3answers
48 views

include parent directory not working

So I have a site that uses subfolders for each subpage, however I can't get every directory to work. the fotter.php is called in correctly, however not the head.php. What is wrong? php-file: ...
0
votes
1answer
24 views

concrete5 loop child pages of parent

I'm new to concrete5 and need to loop out the child pages of a parent (the parent not being the current page necessarily so probably needs parent slug passing as an argument). I'd expect this to be ...
0
votes
1answer
27 views

100% height to parent with no height

Yeah i have been working width some height ajustments but can't seem to get it working propperly, using html5 & css3. HTML 1. <section> 2. <article> 3. Article 1 4. ...
-3
votes
0answers
27 views

Using Parent's Developer Account as a Minor [closed]

I am developing an app for the WWDC Student Scholarship. I am a minor, and according to the rules, I can sign up as a minor using my parent's developer account. Whenever, I try to fill the application ...
1
vote
1answer
40 views

Checking write permissions on parent directory

I have a slight problem.Basically the problem is trivial, but my solution doesn't seem to work. The script that I've came up with, goes something like that: You pass the directory as a $1 ...
1
vote
3answers
30 views

checking (if) and selecting children/parent in jquery

My html: <div class="red-box"> <h2> <a href="#">My Cars</a> </h2> <div class="block_left layout2"> <div class="part1"> <div ...
1
vote
2answers
51 views

Jquery parent sibling reset css

I wanted to create a list of buttons(3) Which act as follows 1) Change background and color on mouse enter and Reset to basic style on mouse leave. 2) Change Background and color on Click. 3) act as ...
0
votes
1answer
24 views

php - construct by both parent and child

I want to make such thing in php: I want to have the parent class named "item", and a bunch of child classes like "sword", "armor" etc. I can call simply: $some_sword = new sword($id) ; But I also ...
-2
votes
1answer
39 views

How to make a parent-child with foreach?

Hello i try to make something like my query: result = mysql_query('SELECT subitems.ItemID, subitems.Parent, subitems.Data, items.ID FROM subitems INNER JOIN items ON items.ID = subitems.ItemID WHERE ...

1 2 3 4 5 26