0
votes
2answers
18 views
Non framework implementation of a hierarchical drop down for Firefox.
I need a hierarchical drop down <select><option/></select> for use within a browser, preferably Firefox. I'd rather not use a framework like jQuery. Please spar …
1
vote
1answer
27 views
Designing MVC URL scheme for hierarchical system
So imagine I'm building a Multi User Dungeon system using a MVC web application. To describe the areas the player can explore, the system can contain a number of Maps, which will c …
1
vote
2answers
494 views
How to bind a dataset with multiple tables to asp.net treeview control?
Hello All,
I have a tree view control which I have to bind a dataset with multiple data tables in it, and have relations between them.
can you suggest how can I do that, I have t …
0
votes
4answers
45 views
TSQL CTE and a Graph of Sorts
With a table of the following structure and sample data:
TableActivity
-------------
Type VARCHAR(8)
Activity VARCHAR(8)
RelatedActivity VARCHAR(8)
…
0
votes
2answers
74 views
How can I create a multi-hierarchical ‘tree’? (If it can be called a tree)
Hi,
i have a list of say courses and certificates and fun_days. These are all called objects. Every object has its requirements object_requirements. A requirement can be either on …
0
votes
3answers
1k views
Why is AdvancedDataGrid not updating when the HierarchicalData dataProvider is updated?
I have an AdvancedDataGrid (ADG) with a HierarchicalData dataProvider:
<mx:AdvancedDataGrid xmlns:mx="http://www.adobe.com/2006/mxml"
dataProvider="{__model.myHierarchicalD …
0
votes
3answers
69 views
Determine the hierarchy of records in a SQL database
I've got a problem I was wondering if there's an elegant solution to. It is a real business problem and not a class assignment!
I have a table with thousands of records, some of w …
0
votes
2answers
75 views
How do I get the count of all the products in a category and its sub categories (and sub-sub categories)?
The category table looks like somewhat as below:
id -- name -- parent_id
1 -- Men -- 0
2 -- Women -- 0
3 -- Shirts -- 1
4 -- Half-sleeve -- 3
5 -- Full-sleeve -- 3
Rela …
0
votes
1answer
48 views
Trying to use linq to search based on table with hierarchical data.
Duplicate many times over (and also these)
I have a table called Types that has the following columns.
ID
Level
Name
ParentID (The ID of the parent row)
and a table called Paren …
2
votes
5answers
432 views
Put linq to sql results into hierarchical structure for using in a un-ordered list ( for jquery tree )
I have 5 tables in a L2S Classes dbml : Global >> Categories >> Sub-Category >> Item >> Item Data. I want to be able to navigate from the Global table down a tree like structure to …
3
votes
3answers
427 views
Storing hierarchical data in Google App Engine Datastore?
Can someone illustrate how I can store and easily query hierarchical data in google app engine datastore?
1
vote
5answers
74 views
What is the best way to manage array or arrays in classical ASP
PHP provides associative arrays but there is no such thing in classical asp. I am looking for a class or function that allows me to create and traverse a hierarchy similar to this: …
0
votes
1answer
43 views
Hierarchical query in SQL Server 2005
I have a data structure inside a table in SQL Server 2005 representing a chain of related objects. Each object can have replacements in many steps. I want to perform a query that r …
1
vote
3answers
55 views
Generate breadcrumbs of categories stored in MySQL
In MySQL, I store categories this way:
categories:
- category_id
- category_name
- parent_category_id
What would be the most efficient way to generate the trail / breadcrumb for …
0
votes
3answers
93 views
Regular Expression Problem: Match in Context
I have a structured file with hierarchical text which describes a GUI in Delphi (a DFM-File).
Let's assume I have this file and I have to match all "Color = xxx" Lines, which are …
