Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
2k views

Jquery: get ancestors (or descendants) and self

One can use matchedset.find(selector) / matchedset.parents(selector) to get the descendants/ancestors of the current matched set filtered by a selector, but that doesn't include the matched set itself ...
5
votes
1answer
2k views

Google App Engine Query (not filter) for children of an entity

Is the parent of an entity available in a Query? Given: class Factory(db.Model): """ Parent-kind """ name = db.StringProperty() class Product(db.Model): """ Child kind, use ...
4
votes
6answers
3k views

jQuery select ancestor

Is is possible to use jQuery to select an ancestor of an element? Markup: <div id="ancestor-1"> <div> <a href="#" class="click-me">Click me</a> </div> ...
3
votes
1answer
532 views

Is there a better way to find lowest common ancestor in a binary search tree?

I know similar questions have been asked before, but I think my solution is far simpler. Especially compared to [http://en.wikipedia.org/wiki/Tarjan's_off-line_least_common_ancestors_algorithm]. ...
2
votes
1answer
127 views

jquery contains | target only first ancestor

I am trying to target and eventually style a string, in this examle BLA, in an HTML page with many tested tables. For example HTML page: <table> <tr> ...
2
votes
1answer
63 views

Obtain nodes that don't have specific ancestor xml xpath

I would like to have xpath, that obtains nodes, that don't have ancestor, which is first descendant of specific node. Let's assume we have xml document like this: <a> <b>This ...
2
votes
4answers
112 views

Find closest parent in relation to (not just contained within) a context

With the following html <ul id="accordion"> <li> <ul> <li><h3>title</h3></li> </ul> </li> <li> ...
2
votes
1answer
580 views

Getting consistent menu tree data from menu tables in MySQL

I have a tree / ancestor / query problem I'm not able to solve: I have a table holding menu data and a table containing all the ancestors of the menu: table menu table ancestors ...
1
vote
2answers
74 views

XSLT use information from one sibling in another

I have to transform an XML document which has the following structure <NODEA d="8" m="1" xxxxx="WWWWWWWWWWWWWW"/> <NODEA d="16" m="1" xxxxx="somethingelse"/> <NODEB d="1" m="1" ...
1
vote
3answers
70 views

Nokogiri equivalent of jQuery closest() method for finding first matching ancestor in tree

jQuery has a lovely if somewhat misnamed method called closest() that walks up the DOM tree looking for a matching element. For example, if I've got this HTML: <table src="foo"> <tr> ...
1
vote
1answer
147 views

Finding best common ancestor of two leaf nodes where nodes have zero, one, or two parents

Goal: I am looking for an algorithm to find the best common ancestor of a graph where nodes in the graph can have zero, one, or two parents. I am not sure of the terminology of "best common ...
1
vote
2answers
152 views

Get nodes that don't have specific ancestor xml xpath

I'm struggling few days with quite complex xpath and I'm not able to formulate it. I have a syntactic tree from c++ like language parser and I would like to have xpath query, that selects all names, ...
1
vote
1answer
102 views

Wrapping an XML element with its ancestor nodes/tags

I've looked at previously answered questions on stackoverflow and also in XPath references and tutorials, but I don't see anything that quite matches my scenario. Apologies in advance if this is ...
1
vote
3answers
218 views

How can I get the common ancestor directory for two or more files in Cocoa/Obj-C?

I have a bunch of files, either NSStrings or NSURLs (it doesn't matter; they are, for the most part, interchangeable), and I need a way to find the common ancestor directory. Does anyone know how to ...
1
vote
1answer
92 views

How to find the first ancestor node whose tag is <tbody> with jQuery?

Suppose the jQuery object is $obj,how to select the desired ancestor?
1
vote
5answers
367 views

How to declare variables

A colleague of mine and I have been discussing how to declare variables in a function. Let's say you have a class called TStrings (using Delphi for the sake of explanation) that has at least one ...
0
votes
0answers
29 views

get ancestors post-thumbnail in search results

I've a page (companies) with two subpages (new, featured). The subpages query stuff from a custom post-type (companies). In the subpages there's also a search box that filters stuff from the custom ...
0
votes
2answers
40 views

C# XmlNode has ancestor type

I have an XmlDocument in the format below. If I perform the following search XmlNode title = xmlDoc.SelectNodes("//Book/Title[contains(., \"Title3\")]"); I will get back an XmlNode which is a ...
0
votes
3answers
193 views

Lowest Common Ancestor implementations - what's the difference?

I've been reading about the Lowest Common Ancestor algorithm on top coder and I can't understand why the RMQ algorithm is involved - the solution listed there is insanely complicated and has the ...
0
votes
1answer
80 views

Setting resource styles dynamically through binding in WPF

I am trying to make the color scheme of my application dynamic so that I can have a color value in a property(hopefully coming from the database) that determines the color scheme of my application. I ...
0
votes
1answer
99 views

Using JDO with HRD on Google App Engine

To get consistent queries with HRD, we are told to use ancestor queries. i am using JDO, however i cannot find an example of an ancestor query using JDO Query. can someone tell me if its possible, ...
0
votes
2answers
108 views

wpf binding text to parent listbox's contents

I have a listBox whose items are to be shown in a textbox format, like so:- <ListBox ItemsSource="{Binding movieList}" Name="innerList"> <ListBox.ItemTemplate > ...
0
votes
3answers
58 views

Adding ancestor selector to this javascript

Is there an easy way to add a bit about also setting the ancestor li tags to .active? <script language="javascript" type="text/javascript"> function setActive() { aObj = ...
0
votes
2answers
78 views

Easy way to get list of ancestor Classes for the object in Action Script 3?

I would like to check if object has a DisplayObject as one of it's ancestors and perform some operations on it if it has. Any quick and easy way to do this?
0
votes
2answers
16 views

How to affect an ancestor in jQuery that has a certain descendant?

I've got these two DIVs which have the same class name (): <div class="myOutterDiv"> <ul class="innerUL"> <li id="num1">1</li> <li ...
0
votes
1answer
100 views

Ancestors in App Engine data store

I've been developing for Google App Engine for a while. One of the features I've noticed but haven't had an opportunity to use yet is "ancestors" in the data store. What would be an example of a ...
0
votes
1answer
260 views

Access DataTemplate Property

I have a TabControl with a custom ItemTemplate (for the TabItem). I would like to hide the last tab item and if I could bind to the TabItem's Visibility property this would be possible. ...
0
votes
3answers
68 views

Can someone explain this javascript code to me?

var vTableExp = "//a[contains(@href,'newdid')]/ancestor::td/ancestor::tr/ancestor::tbody"; var vTable = dom.find(vTableExp, XPFirst); thanks
0
votes
1answer
1k views

XPath: Recursive Ancestor Search

With my current node selected I wish to find an element <name> [./name] and return the text content. If an element <name> does not exist in the currently selected node I wish to check the ...