Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
11answers
436 views

How do I get the n-th level parent of an element in jQuery?

When I want to get, for example, the 3rd level parent of the element I must write $('#element').parent().parent().parent() Is there a more optimal method for this?
15
votes
4answers
5k views

Win32 window Owner vs window Parent?

In Win32 programming, what is the difference between a window's parent and a window's owner? I thought I had it figured out, then I came across this code: SetWindowLong(handle, GWL_HWNDPARENT, foo); ...
11
votes
5answers
100 views

get parent extends class in php

i have the oop php code: class a { // with propertie and functions } class b extends a { public function test() { echo __CLASS__; // this is b // parent::__CLASS__ // error } } $b = new b(); ...
11
votes
4answers
10k views

How to get parent process in .NET in managed way

I was looking a lot for method to get parent process in .NET, but found only P/Invoke way.
9
votes
7answers
4k views

How may I reference the script tag that loaded the currently-executing script?

How can I reference the script element that loaded the javascript that is currently running? Here's the situation. I have a "master" script being loaded high in the page, first thing under the HEAD ...
8
votes
4answers
84 views

Parent(), faster alternative?

I am working with a dashboard of divs and each div it has a tree of which the buttons are. Every time I have to know which the id of that div is so I am using parent() alot. Mostly I am doing ...
7
votes
5answers
649 views

jQuery what instead $(this).parent().children()

Just a quick example: <p> <span class="example"></span> <input type="text" name="e_name" id="e_id /> </p> <script type="text/javascript"> ...
6
votes
3answers
2k views

How to get parent element by specified tag name using jquery?

I want to get an Element's parent which has an specified tag name. Sample code: <table> <tr> <td> <input type='button' id='myId' /> </td> ...
6
votes
2answers
340 views

Communicating back to parent from a Webkit notification

I'm using webkitNotifications and createHTMLNotification, etc. to successfully create a notification in Chrome (Windows). Now I would really like to have the notification window communicate back (or ...
6
votes
1answer
274 views

Can an entity parent be modified in Google app engine?

When I update an entity, the entity needs to change parent, is there any way to do that?
5
votes
2answers
149 views

jQuery - parent() not working within callback function

I was testing with parent() and closest(), none work within function. TD stays the same, no change using this method: $.get('form.php', function(data){ alert(data); ...
5
votes
5answers
3k views

CSS: Parent-Div does not grow with it's children (horizontal)

I would like the parent-div (red) to grow with the green child-div. Now it just stops at the viewport. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
5
votes
7answers
11k views

C# enum in interface/base class?

i have problem with enum I need make a enum in base class or interface (but empty one) class Base { public enum Test; // ??? } and after make diffrent enums in some parent classes class ...
4
votes
6answers
66 views

jQuery access child of current parent

I'm new to jQuery and I'm trying to do the following: access the child of the current div's parent ( or in other words: another child of the current div's parent ). My code looks like this ( this is ...
4
votes
2answers
125 views

Class extending PDO - parent::__construct does not work, but creating a new PDO does

I am trying to write a PDO wrapper but I'm having some problems with the constructor. Ideally, I would like to call the parent's constructor but, for some reason, that is not working. I tried (to ...
4
votes
7answers
120 views

parent::parent in PHP

I search a way to access to the parent, parent function of a class without to call the parent... Hmmm, that sound a bit weird explanation so i will give an example: class myclass { public function ...
4
votes
3answers
143 views

How to find nth parent of an element using jquery

I want to find the nth parent element of an given element and access the attributes of parent. <div id='parent1'><br/> <div id='parent2'><br/> <span><p ...
4
votes
4answers
75 views

PHP instantiating child class

I'm trying to become an object-oriented coder here, so I'm giving myself some simple tasks. I built a class that displays all the images in a given directory. That worked fine, so I separated that ...
4
votes
4answers
106 views

Recover Parent from Pointer-to-member

Suppose that we have a pointer-to-class member pointing at a field of a class. We also have a pointer to that specific field in a particular instance of the class. For example, we might have ...
4
votes
3answers
239 views

Better way of child object accessing parent object?

I have some JS you'll see below. I want the inner class object to be able to access it's parent. It needs to access parent methods and properties. The way I've done it is working, but I'd like to know ...
4
votes
6answers
2k views

JQuery, find parent

<ul><li><div><div><span id="thisid"></span></div></div></li></ul> $('#thisid').parent('li'); that obviously doesn't work, but how do I ...
4
votes
1answer
2k views

Parent properties inside maven antrun plugin

There is a multi-module project. Inside the child I need to do some complicated stuff (integration test with deploying to application server and so on). So there is an integrationtest child, and from ...
4
votes
5answers
302 views

Parent CSS (jQuery)

There is <dl> with padding-top <dl id="posters" style="padding-top: 150px;"> <dt class="active">text</dt> <dd class="active"><a href="#"><img width="150" ...
4
votes
4answers
799 views

CSS: How does Width work as a percentage?

I'm having what I think is a weird problem. I have one div, inside a parent div, and I'm giving the child div a width of 100%, but it's not growing to the size of the parent div. The parent div does ...
4
votes
3answers
2k views

Why does appending a <script> to a dynamically created <iframe> seem to run the script in the parent page?

I'm attempting to create an <iframe> using JavaScript, then append a <script> element to that <iframe>, which I want to run in the context of the <iframe>d document. ...
4
votes
5answers
5k views

Maven - skip parent project build

I know it's mauvais ton to ask twice in a single day but here's another Maven puzzler: I have a parent POM which defines 5 modules (5 subprojects). Since each module is executed in exactly the same ...
3
votes
3answers
92 views

does foreign key always reference to a unique key in another table?

Is it not possible that foreign key(single column) in a child table references to a parent key which has some duplicate values?
3
votes
1answer
42 views

Create a branch in a project with its parent under a different project in TFS

I have the following structure: $/ProjectA [Uses MS Agile Template]     --Branch1 $/ProjectB [Uses Custom Agile Template]     --[To Be Created Branch] How can I ...
3
votes
1answer
96 views

Scala: Passing instance of child class to parent class function

Why does the Scala repl say: <console>:10: error: type mismatch; found : Car#Door required: _1.Door where val _1: Car When I run this statement: var c = New Car ...
3
votes
2answers
59 views

Overrides a method with all parents works in that method?

I have a class B, that extends from class A, class B overrides a class A's method: public class ClassB extends ClassA { @Overrides protected void DoSomething() { super.DoSomething(); ...
3
votes
2answers
140 views

Get 2 levels up from dirname( __FILE__)

How can I return the pathname from the current file, only 2 directories up? So if I my current file URL is returning theme/includes/functions.php How can I return "theme/" Currently I am using ...
3
votes
7answers
318 views

how to get the text of parent element using jquery?

I have a div which contains a delete hyperlink, onlick of it, I want the text of the div tag. How is it possible in jquery?! <div>sometext<a href="#">delete</a></div> I want ...
3
votes
2answers
90 views

jquery short hand for parent, children

i keep on having to affect elements relevant to other elements but my methods see a little amateur! ie to // <div> <div> <div> <ul> matched item where script is called from ...
3
votes
1answer
1k views

Jquery select element in parent window

Is there a way to select a DIV in the parent window using jquery? For example: Main page contains this, <div id="testdiv"></div> Popup page has a form with some options and an 'Apply' ...
3
votes
1answer
56 views

jquery: How to optimize finding relatives of $(this)

I often find myself trying to do something related to the element clicked, and end up with a string that looks something like this: $('input.Button').click(function(event) { ...
3
votes
5answers
1k views

jquery if div has display none addclass to parent class

I want to add a class onto the div with class 'catresults' if the divs below it with class 'refinement_category_item' have a style="display:none". <div class="refinement_category_section"> ...
3
votes
1answer
477 views

How can you get the parent of a UIElement?

Ok... I know that FrameworkElement, which is a direct subclass of UIElement, has a Parent property, but Panels have children of type UIElement, not FrameworkElement (Children is of type ...
3
votes
2answers
272 views

Python subprocess get children's output to file and terminal?

I'm running a script that executes a number of executables by using subprocess.call(cmdArgs,stdout=outf, stderr=errf). when outf/errf is either None or a file descriptor (different files for ...
3
votes
1answer
259 views

ActiveRecord validation by parent attribute

I have model Article, for example. Article has_one ArticleContent. ArticleContent has validation of all it's attributes by default. But I need additional functionality - to save draft Article, without ...
3
votes
2answers
2k views

Android: Making changes to a button's parent view

I have a RelativeLayout with a button inside it. Once the user clicks on that button, I would like to change the background of the parent view (RelativeLayout). I know I can do this by storing the ...
3
votes
2answers
3k views

fancybox - passing variable back to parent when fancybox window is closed

Hi i was wondering if it is possible to pass back a variable from fancybox child to parent once child is closed? Any info is muchly appreciated. Regards, Phil EDIT ** function cleanUp(){ var ...
3
votes
2answers
3k views

Qt: Multiple windows in a parent/child chain, parent does not close children?

I am trying to create multiple windows in a chain: window 1 is the parent of window 2, window 2 is the parent of window 3, etc. When I close one window, I would like all its children to close as ...
3
votes
2answers
135 views

How to replace the content of the parent div with jQuery

i have this html code: <div id="ht_key" class="ht_all"> <div class="ht_bottom"> <div class="ht_bottom_p"> <span class="ht_bottom_o"> ...
3
votes
3answers
154 views

Calling parent method from within the parent class

Here's an excerpt from my code package dictionary; import java.util.Iterator; import java.util.LinkedList; import java.util.regex.*; public class IntelliCwDB extends CwDB { public ...
3
votes
3answers
299 views

Parent class inside another class

Okay, so I have this class, let's say CMain, that contains a CFruit class. What I would like to do is run functions based on CFruit's type (if it's CPear or CApple, etc). So I'd like to do something ...
3
votes
1answer
566 views

SQL query root parent child records

We have nested folders with parent-child relationship. We use MySQL MyISAM DB. The data is stored in the DB in the following manner. Every time a child folder is created in the nested structure, the ...
3
votes
3answers
1k views

C# How to kill parent thread

A parent has several child threads. If user click on stop button the parent thread should be killed with all child threads. //calls a main thread mainThread = new Thread(new ...
3
votes
2answers
2k views

PHP - Find parent key of array

I'm trying to find a way to return the value of an array's parent key. For example, from the array below I'd like to find out the parent's key where $array['id'] == "0002". The parent key is obvious ...
3
votes
1answer
266 views

find the relative element with jquery

Is there a simple and clean jQUery-way to find the element who a element is having it's relative position to? In other words: finding the first parent who has the css attribute position: relative, or ...
3
votes
3answers
7k views

Jquery: How to get to a particular child of a parent?

To give a simplified example, I've got the following block repeated on the page lots of times (it's dynamically generated): <div class="box"> <div class="something1"></div> ...

1 2 3 4 5 14