node

Hot to commit changes for a TreeView while editing a node (C#)?

I am playing with Microsoft's TreeView control and I am trying to force a data update of some sorts while editing a node's label, similar to UpdateData for a grid. Basically, in my editor, I have a Save button and this TreeView control: what I want is when I am editing a node's label in the TreeView, if I click on the Save button I want...

How do I create a node from a cron job in drupal?

In a custom module for drupal 4.7 I hacked together a node object and passed it to node_save($node) to create nodes. This hack appears to no longer work in drupal 6. While I'm sure this hack could be fixed I'm curious if there is a standard solution to create nodes without a form. In this case the data is pulled in from a custom feed ...

Adding nodes dynamically and global_groups in Erlang

Erlang support to partition its nodes into groups using the global_group module. Further, Erlang supports adding nodes on the fly to the node-network. Are these two features usable with each other? As far as I understand, you have to name every node on startup to use the global groups. ...

what is the best way to update an XML node value in C#?

My function iterates through every node of an instance of an XMLDocument. It checks to see if the current node's name is in a lookup list. If it is, it applies appropriate validation to the value of the current node. When the validation method indicates that the value has been changed, I want to replace the value in the original docum...

How to add and relate a node within the parent nodes add form in Drupal.

Hi, I want to accomplish the following scenario in Drupal: You have 2 content-types. Lets say, an application-form for a lisence, and a content-type for persons. Then when you go to add a lisence in the "node/add" submission form in Drupal, i would like to add a relative number of persons that would be related to this lisence, and onl...

Finding DOM node index

I want find the index of a given DOM node. It's like the inverse of doing document.getElementById('id_of_element').childNodes[K] I want to instead extract the value of K given that I already have the reference to the child node and the parent node. How do I do this? ...

How to add node into TreeView Control with Javascript

Hi guys, I just wanna learn how to add a node to TreeView control (which takes its data from database with a parent-child relationship). Of course when I select a node the new node I wanna add should be added under the selected one and after adding it into the selected node then I wanna add the new node into database too. I can handle t...

C# - LinkedList - How to remove all nodes after specified node?

I am implementing an undo/redo buffer with generic LinkedList. In this state: [Top] state4 (undone) state3 (undone) state2 <-- current state state1 [bottom] When I do a Push, I would like to remove all states after the current one, and push the new one. My current bypass is to do while (currentState != list.last), list.removeLast(); b...

How to use Xpath in Yahoo! Widgets to traverse a tree?

Hello. I'm creating a Yahoo! Widget and have done this before without any problems (creating a widget). I'm getting a xml document via a weblink and want to get all the nodes intro a tree. I'm doing this: var request = new XMLHttpRequest(); request.open( "GET", url, false ); request.send(); if ( request.status == 200 ) ...

how to get the child node in div using javascript

Below is the structure of my div: <div id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a" onmouseup="checkMultipleSelection(this,event);"> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <td style="width:50px; text-align:left;">09:15 AM</td> <td style="width:50px; t...

What is fastest children() or find() in jQuery?

To select a child node in jQuery one can use children() but also find(). For example: $(this).children('.foo'); gives the same result as: $(this).find('.foo'); Now, which option is fastest or preferred and why? ...

How do I get my widget not to crash if there is no value in a xml node?

I'm getting an xml file and want to get data from it. The source of the xml doesn't really matter but what I;ve got to get a certain field is: tracks = xmlDoc.getElementsByTagName("track"); variable = tracks.item(i).childNodes.item(4).childNodes.item(0).nodeValue; Now this works like a charm, EXCEPT when there is no value in the node....

Get all Comment ID's within a Drupal node

I have a node in Drupal with a few comments. Is there an easyish way to get the CID of every comment within the node? Also, is there a way to sort them by various parameters, chronology, karma of the comment etc. Thank you. ...

how to remove a node from an xml file using a C program ?

Hello Guys, I am using libxml/xmlparser.h library in my program to parse the xml file. Is there any function in that library that can remove a node from the xml file? I want to completely remove the node, i.e. its attributes and properties also. ...

Convert String XML fragment to Document Node in Java

In Java how can you convert a String that represents a fragment of XML for insertion into an XML document? e.g. String newNode = "<node>value</node>"; // Convert this to XML Then insert this node into an org.w3c.dom.Document at as the child of a given node? ...

DOM: fetch all text nodes in the document (PHP)

I've have the following (PHP) code that traverses an entire DOM document to get all of the text nodes. It's a bit of a ugly solution, and I'm sure there must be a better way... so, is there? $skip = false; $node = $document; $nodes = array(); while ($node) { if ($node->nodeType == 3) { $nodes[] = $node; } if (!$skip && ...

ASP.NET TreeView sort

I am accustomed to winform TreeView having a Sorted property which automatically manages nodes sorting. I now have to alphabetically sort an ASP.NET TreeView and I'm surprised I cannot find any similar property or callback method. Is there any way to automatically achieve this operation in ASP.NET or do I have to manually sort and inser...

In Drupal 6, how do I make a specific content type always show with lightbox 2?

Doing node/%/lightbox2 would do it, but I can't figure out how to make a dynamic link to the node! Ideally, each node will have a thumbnail, and that thumbnail will trigger the lightbox2-viewed node ...

Insert XML node at a specific position of an existing document

Hi, I have an existing XML document with some optional nodes and I want to insert a new node, but at a certain position. The document looks something like this: <root> <a>...</a> ... <r>...</r> <t>...</t> ... <z>...</z> </root> The new node (<s>...</s>) should be inserted between node <r> and <t>, resulting in: <root> ...

copying nodes in java dom api

I'm having trouble with copying nodes from one document to another one. I've used both the adoptNode and importNode methods from Node but they don't work. I've also tried appendChild but that throws an exception. I'm using Xerces. Is this not implemented there? Is there another way to do this? List<Node> nodesToCopy = ...; Document newD...