1
vote
2answers
12 views
Nested Class In Signed Java Applet
I'v been playing with java applets recently. In the one im writing now I have a static nested class. It works fine in the viewer, but when I compile it I get 2 class files. classna …
0
votes
1answer
345 views
Nested sets, php array and transformation
Hi,
I need to transform my nested sets structure (mysql) into json for this spacetree
1) http://blog.thejit.org/wp-content/jit-1.0a/examples/spacetree.html
I found this function …
0
votes
1answer
6 views
Accessing data in a nested matrix
This one has me stumped, and none of the other related questions here have given me clues. I'm using regexp to parse a string. When I print t afterward, it looks something like t …
7
votes
5answers
2k views
How do you sort a tree stored using the nested set model?
When I refer to nested set model I mean what is described here.
I need to build a new system for storing "categories" (I can't think of better word for it) in a user defined hiera …
2
votes
2answers
63 views
Python nested classes scope
Im trying to understand scope in nested classes in python. Here is my example code :
class OuterClass:
outer_var = 1
class InnerClass:
inner_var = outer_var
…
1
vote
1answer
45 views
RoR: before_save on nested object in form?
I have a form with a nested object (customer < order), and it works except that it keeps creating a new customer record.
I'd like to have it check to see if an existing custo …
1
vote
2answers
44 views
Nested Sortable JQuery list doesn’t work in IE while it does in FF
Hello everybody,
While I'm using this site quite often as a resource for jQuery related problems I can't seem to find an answer this time. So here is my first post.
During daytim …
0
votes
1answer
19 views
How to call IsDialogMessage in a Modal Dialog
In my Win32 app, I had a modal dialog that displays settings that I had to add more settings to. In order to fit the new settings, I dropped a TabCtrl in the dialog and implemented …
1
vote
3answers
35 views
Is there a SQL Server 2008 method to group rows in a table so as to behave as a nested table?
This could turn out to be the dumbest question ever.
I want to track groups and group members via SQL.
Let's say I have 3 groups and 6 people.
I could have a table such as:
T …
0
votes
2answers
23 views
How to Decompress nested GZip (TGZ) files in C#
I am receiving a TGZ file that will contain one plain text file along with possibly one or more nested TGZ files. I have figured out how to decompress the main TGZ file and read t …
1
vote
3answers
1k views
Persist nested jquery sortable list
The Problem:
I have a nested list on my configuration page that looks like this:
<a id='Save'>Save<a>
<ul id='configuration-list'>
<li id='e1'>Elem A
…
0
votes
1answer
200 views
nested update panel with update progress
I have nested update panel and I set the updatemode to 'conditional' for both parent child update panel. While the child panel is refreshed, the parent panel is not refreshed but t …
0
votes
1answer
53 views
Saving nested XML in C#
I've go the following XML file...
<A>
<B>
<C>ValueX</C>
<D>ValueY</D>
</B>
</A>
Which I read into a DataSet to displa …
0
votes
2answers
24 views
Nested link_to_function/insert_html does not work
Here is a simple example of the problem.
http://gist.github.com/235729
In short, if you have a index.rhtml with:
<%= link_to_function "A link to insert a partial with nested …
3
votes
4answers
84 views
How to flatten a List of different types in Scala?
I have 4 elements:List[List[Object]] (Objects are different in each element) that I want to zip so that I can have a List[List[obj1],List[obj2],List[obj3],List[obj4]]
I tried to z …
