Questions tagged [grandchild]

Grandchild is a child's child.

46 questions
0
votes
0 answers

I want a grand grandchild of a

Please I'd like to make a grand grandchild of a div appear in front of everything in the document, while other children and grandchildren of that div may be subject to change of order. I tried changing the z-index of everything and it doesn't…
Kizukooo
  • 31
  • 5
0
votes
1 answer

How to extend a custom widget in wordpress?

I am talking about making a widget which extends a child widget of WP_Widget. Using this as reference: https://wordpress.stackexchange.com/questions/101438/how-to-extend-a-wp-widget-twice Example: My_WidgetBase extends WP_Widget My_Widget extends…
aus
  • 69
  • 1
  • 11
0
votes
1 answer

Get Grandchild Object Field Values from Parent Object

I'm a newbie at sales-force apex coding. I have 3 custom objects, Location(Parent) -> Group(child) - > Meeting(grand child). All are related to each other through Master detail relationships. I am trying to get 2 field values from the earliest…
Rufus K.
  • 107
  • 1
  • 6
0
votes
1 answer

Python: Closing a sub-child-window prevents the opening of a new sub-child

For my job in a laboratory of my University of Applied Sciences I need to create a Python-programm which creates a child-windows with the possibility to create another one. So far this works quite fine. The tricky thing is where I close the…
Consequat
  • 3
  • 3
0
votes
1 answer

Need help parsing JSON decoded grandchildren with PHP

foreach($response_2['items'] as $item) { $item['track']['name'] = (array)$item['track']['name']; foreach($item['track']['name'] as $key => $value) { echo $value . "
"; } $item['track']['artists']['name'] =…
Rawland Hustle
  • 781
  • 1
  • 10
  • 16
0
votes
2 answers

xslt - merge grandchild nodes into parent container

I have an XML structure as such: 1
0
votes
1 answer

JavaScript display child div on mouseover

I have the following HTML:
qazerty23
  • 411
  • 2
  • 6
  • 16
0
votes
2 answers

Preventing grand children from forking in C

I have the following code in which I'm trying to create sub processes by forking. I want that exactly 3 sub processes are made. However, when I run the code I seem to be getting more, probably because of the children processes forking grandchildren.…
Zahaib Akhtar
  • 1,068
  • 2
  • 11
  • 26
0
votes
1 answer

Nested Datalists down to GreatGrandChild level

I've been "successful" at getting nested datalists to work through four generations (Parent, Child, GrandChild, GreatGrandChild) but only with recordsets less than 50 and almost a minute of churn time. Now that I've got about 500 records, the…
AKDad
  • 113
  • 10
0
votes
1 answer

Wordpress Query Grandchildren Only

I'm currently working a project where the pages and their hierarchy mimic categories, the query on each "category page" works fine, however at the top level I wish to query all the grandchildren pages, and skip the child pages. In another question…
Neilisin
  • 27
  • 10
0
votes
2 answers

Wordpress post categories: how to exclude children?

I have a category structure like this... - Shirts - Small - Red - blue - green - Medium - Large - Jackets - Hats ...where the ID of 'Shirts' is 1. When I do this...
0
votes
1 answer

Rails 3 Uploadify + Paperclip Can't Auto-Generate Grandchild Record ID On Save

I have an association as so: User has many Uploads Uploads belongs to User and has many Upload Images Upload Images belong to uploads <-- Grandchild I create my User before I add Uploads to that User. Uploads are stand-alone files of misc type, but…
Noz
  • 6,216
  • 3
  • 47
  • 82
0
votes
1 answer

Creating child and grandchild paperclip records in a single controller action

I've been asked to modify an upload system that uses paperclip. Currently Users have many uploads, but now they want to extend this functionality by giving uploads pictures to help users better visualize the uploads. So: User has Many Uploads…
Noz
  • 6,216
  • 3
  • 47
  • 82
-1
votes
2 answers

How to pass value to a Grandchild thread under a Child thread from Parent thread or Child thread in C++

I have a file.txt with the following values: 1234 567 8910 I want to create a program in c++, that creates x number of child threads with x being the number of lines in "file.txt". The child thread receives the line so it splits the line into digits…
-1
votes
1 answer

How to Parse Json grandchild in VB.NET Newtonsoft

I am having trouble showing tongits,black jack, 21 in a Listbox I can only show favorite game, game in a Listbox and also how can I count the number of question in questionnaires? Json data { "id": 1, "status": "DRAFT", "title": "GAMES", …