0
votes
2answers
43 views
An easy way to display prototype nodes in PHP?
It's a kind of UI second flavor,
function UISecond($elements)
{
}
So that this functions shows the specified elements(with name,id and type) which is neccesary,but not too pick …
0
votes
1answer
11 views
Drupal6: No blog node can be edited - solved
Going to http://www.example.com/node/NID/edit, where NID is any valid nid referring to a node of the story content type, results in the following error:
warning: call_user_func_ar …
0
votes
3answers
36 views
What is the most effective way to create a reference to this HTML element using plain JavaScript?
If I have the following HTML:
<div id="container">
<iframe></iframe>
</div>
What is the most effective way (mainly in terms of performance) to create a …
2
votes
3answers
76 views
Drupal Custom Node Form
I want to create an input form for registered user, separated from admin's content creation form. Each submission will create multiple node.
To illustrate the case, I will use con …
0
votes
3answers
97 views
C# Xml Node to String.
I have a XML document with my data in it, multiple entries for the same node fields (StudentID = FirstName, LastName, etc). How do I convert the nodes into string values for each S …
0
votes
0answers
25 views
How do I surroundContents() around a Document Fragment Node?
I may be asking the impossible, but, how do I surroundContents on a document-fragment node?
My thoughts (which I'd appreciate feedback on), are as follows: Is the solution to clo …
0
votes
1answer
93 views
Java tree class’s
I'm trying to make my own tree class but keep getting horribly confused. Basically I'm trying to make a weighted tree. I've made the following node class:
import java.util.*;
p …
2
votes
6answers
940 views
MySQL: Move node in nested set
I'd need a MySQL query that moves a node and all it's children within a nested set. I found this site, but that function just seems so illogical - there's no universeid or treeid i …
-1
votes
2answers
36 views
Developing an asset/node based CMS
I'd like to develop a CMS for fun/personal using asset-based architecture rather than page-based (why, is the purpose of this question), but I can't find much information on the su …
0
votes
1answer
37 views
range - how to select new inserted node automatically ?
hi, i have range>
newNode = document.createElement("span");
newNode.innerHTML = 'example';
range.insertNode(newNode);
i insert new node. is there way, how to automatically selec …
2
votes
3answers
50 views
xpath select referenced xml node
I need to select a node whose "name" attribute is equal to the current node's "references" attribute.
<node name="foo" />
<node name="bar" references="foo" />
I coul …
2
votes
4answers
144 views
Scheme How To Return Multiple Values?
I notice that almost all scheme functions can only return one list as output.
In the following, I would like to return multiple values of all the adjacent nodes of neighbors.
(d …
0
votes
2answers
24 views
comparing a Node and an Object with a BST data structure
I'm getting a "java.lang.string cannot be cast to node" exception. I thought of converting the localRoot to a string using a provided toString method then comparing them, nut this …
1
vote
4answers
894 views
Create multiple CCK nodes with single custom form in Drupal
I need a form which will allow creation of several related nodes at the same time. All of the nodes involve CCK fields.
I would like to use as much of CCK's built-in validation, s …
1
vote
2answers
47 views
Scheme How To Test 2 Conditions in one Clause ?
I need to create a sub-function that will return me all the adjacent node, which I needed for this question in Scheme. I'm new to scheme, not sure how I can combine two conditions …
