In metadata, the term data element is an atomic unit of data that has precise meaning or precise semantics.
0
votes
0answers
25 views
PHP XML DOM - Distinguishing nodes based on parent attributes/elements
First of all, thanks for the time reading this :)
I need help reordering an XML feed. I've tried many things and researched, but can't come up with a solution.
<xml>
<group>
...
0
votes
0answers
35 views
Append link-element to DOM
I'm trying to add touch icons for a webpage. This page is handled by a CMS (LifeRay) and since I don't have access to the templates I can't add the elements to my head element by altering the ...
0
votes
4answers
54 views
Remove element from DOM
I have a code:
<ul class='mates'>
<li class='m' id='1'>Jakub</li>
<li class='f' id='2'>Vinnie</li>
<li class='m' id='3'>David</li>
</ul>
This ...
0
votes
3answers
19 views
XSLT remove duplicate children
I am looking for an XSLT transformation to de-duplicate the children element of a parent.
In my case both parent and children are given (i.e I don't want to deduplicate any children of any element).
...
-1
votes
0answers
29 views
How to create an element inside another using JAXB in Java?
I already posted this question before but there was something wrong i antecedently wrote in the code and when i corrected it i think it was too late to be viewed again.
I have a java code i'm using ...
0
votes
1answer
12 views
jQuery list elements taking the whole height of the parent verticaly
i have four icons displayed verticaly in a ul with a 100% height and a fixed width.
i want the icons to fit according to the actual size of the ul.
<div>
<ul id="user-actions">
...
0
votes
0answers
17 views
Separating implementation from definition of a tag/element
I've a problem regarding the datastructure to represent a tag (for example HTML tag/element). On one hand I'd like to have my program keep a list of all supported tags and their supported attributes ...
0
votes
1answer
41 views
linked list missing element
I am writing a c program where I want to add strings to a linked list based on a condition. As my code is rly long I made a simplified version which also shows my problem.
My problem is that after ...
0
votes
2answers
53 views
Access an element by matching its “html()” content
I'm working with a table form which displays the rows of a database table.
There's a unique row with id=0 which must not be deleted but I'm not able to reach it. The id is stored inside a td and the ...
0
votes
1answer
20 views
How to perform add action in a form only one time, after update the record everytime
I have a form element. When I click the submit button it will add the data to the table.
that is working fine. But my need is to add data to the table only the first time, after each submission data ...
0
votes
0answers
29 views
jQuery to detect what file type attribute, then parse it into appropriate tags
I have a script parsing my RSS feed into a Wordpress blog format, but the element tag is running amuck.
Is there a way to filter through the parsed RSS to look for tags containing jpg and then change ...
0
votes
1answer
18 views
XStream Element contains TextNode and Element
I am using xstream to parse XML and everything goes well while....
there is a situation that xstream seem can't handle it.
There's one tag named "", but in different xml file, it can contain text ...
1
vote
3answers
23 views
Setting Value or Text to an Unknown Element
I'm trying to set the value of an element, if the value can't be set (because it's not an input element such as input, select or textarea) then it must be an element that can be populated with the ...
0
votes
1answer
42 views
How to get text from the node in xml file, that contains text and child node?
I have a very big xml file. I read it using by xmlReader. I have problem when i reach to next line:
<title>Abasia<nemod>(-astasia) (hysterical)</nemod></title>
How I can ...
2
votes
3answers
42 views
jQuery error with pipe symbol “|” in ID name [duplicate]
I have a select menu, it's options are ID'd like this:
<select>
<option id='order1|2'>1</option>
<option id='order2|2'>2</option>
<option ...
0
votes
3answers
52 views
How to check if text node of xml file has a child node inside and get all data from them?
I have xml file. This is just piece of that file
1 <mainTerm>
2 <title> Abandonment </title>
3 <see> Maltreatment </see>
4 </mainTerm>
5 ...
0
votes
2answers
27 views
HTML Table - Put everything without this newline
<body>
<table border=0>
<tr>
<td colspan="8" rowspan="8"><img src="Start3.bmp"></td>
</tr>
<tr>
...
0
votes
0answers
28 views
MSBUILD target outputs element is applied strangly
Hi I have my C# project in Visual Studio 2012 where I want to copy some external dlls to my bin folder.
For a clean build it copies everything to bin folder without problems.
Then I delete some dll ...
2
votes
1answer
130 views
Can't create “App Engine Connected Android Project” in Eclipse: “Creation of element failed”
I am not able to create an "App Engine Connected Android Project" by wizard in Eclipse anymore. When I click the "Finish" button following error message appears:
Creation of element failed.
...
-3
votes
1answer
63 views
How to count elements in an array in c [closed]
In C, how can I count how many times a specific element appears in an array ? And then how to display that count to the user ?
For example, if I have an array consisting of {1, 2, 2, 2, 3}. How can I ...
0
votes
2answers
39 views
Jquery add attribute to element on hover
Feeling like I'm the cusp of understanding Jqueries selectors and element handling - just not quite there yet!
The following html is being cloned so the user can add different issues, what I'm trying ...
0
votes
0answers
12 views
PHP Selenium cannot select specific select box with HTML page that has multiple select boxes
I am extensively using phpunit and selenium with the WebDriver-PHP library provided on the chibimagic.org github page. I have done well as to get this automation working but I have stumbled across a ...
0
votes
1answer
18 views
XSLT issue with renaming the elements — changing namespace
I am trying to rename/remove the namespace prefix from the output XML.
However, one of the top element should contain the namespace declaration without prefix.
The XSLT is not working properly. In ...
0
votes
1answer
57 views
Labview: element-wise array multiplication operations
Does there exist a function similar to that of numpy's * operator for two arrays to multiply their elements in an element-wise manner, returning an array of the similar type?
For example:
#Lets ...
0
votes
1answer
34 views
getting elements in DOM in d3
My code looks like this. I wrote this with the help of the d3js website, because I am learning how to use d3. it is my first JS library so the syntax and customs were a little confusing at first but I ...
0
votes
1answer
22 views
Removing <where> timestamp element from kml file Google My Tracks
I have been playing around with Google "My Tracks" on Android and importing the tracks into Google Earth. When I do, I get the time bar at the top and the track will play as you drove it, like an ...
0
votes
2answers
50 views
Unable to locate element by name
Can someone please explain to me why Selenium webdriver can't be find by name=userid?
<input class="required" type="text" size="15" maxlength="64" **name="userid"**
value="" ...
-8
votes
4answers
53 views
PHP : Counting how many element in an array [closed]
I'm still newbie in PHP. I want to know how many element in an array. But my code bellow doesn't work.
anybody please help me..
here's my code..
<?php
$array = array(1,3,2,4,6);
...
0
votes
0answers
51 views
AJAX issue on displaying HTML data encoded with JSON
How can I display correctly DIV elements from a successful AJAX call?
<script>
$("#form").submit(function(){
$.ajax({ type:"POST",
url:"index.php",
data: ...
2
votes
1answer
27 views
DIV object and an Overlay object, prototypal inheritance issue with html elements?
I have a very unique problem, and I am not sure as to how I should tackle it, whether there is a best way to tackle it, and/or if this is a design pattern flaw.
The reason for asking is that I ...
0
votes
3answers
40 views
How to get the div in which the cursor or caret is placed?
I have three contenteditabledivs and I want to know ,in which div the user has placed the cursor or caret through tab key or mouse click,
<div contenteditable="true"></div>
...
0
votes
2answers
32 views
JavaScript - Get object property from element data
I'm wondering if that's possible to get object property from element data.
So let's say I have element:
<div data-item="objProp" class="test">test</div>
And js object:
var obj = {
...
0
votes
1answer
42 views
Prolog: How to find a specific element in a list?
I have to implement this predicate:
predicate(+connections, +[index,position], -leftConnections);
The connections variable is a list which looks like this:
(conn(symbol1, element11, element21), ...
0
votes
0answers
44 views
Select and Display ONE element(row) of JSON data?
I have a bit of experience with php and mysql, but am just getting into javascript/ajax/json and I am a bit confused.
I can now do a mysql query and return the json_encoded data,
I found a script ...
0
votes
1answer
35 views
Moving an array element from [1] to [0]
You'd think it'd be the easiest thing in the world, but I can't find any solutions that don't involve complications that I don't need or use approaches that I don't understand.
I have an array of ...
0
votes
0answers
22 views
How can i make an element to cover/overlap another element?
I have an element (summary in this case) and right below there is a box.
When I click the details to see the content of the summary, the rest of the content is blocked by the box below, I can't see ...
0
votes
0answers
28 views
How to get an element's index by using xPath and text value
I have following structure
<div class='list'>
<div class='column'>aaa</div>
<div class='column'>bbb</div>
...
<div class='column'>jjj</div>
...
0
votes
2answers
30 views
XSLT usage to reach attribute value in structured elements with the same name
I hope someone can help me with this problem to which i found no solution at the moment.
I am using XSLT for the first time to convert some XML. The trouble I am finding is using a template to get to ...
0
votes
4answers
23 views
How to get element's index by xpath?
I've next structure :
<div id='list'>
<div class='column'>aaa</div>
<div class='column'>bbb</div>
...
<div class='column'>jjj</div>
</div>
...
0
votes
1answer
38 views
XSLT adding new element to current node
I have a xml and I am trying to add a new element then assign the value on certain conditions.
Everything is working fine.
However, it seems to adding the new element to the parent node.
Can someone ...
0
votes
2answers
50 views
CSS selector to get preceding sibling
Is there any way using pure CSS(3) to select an element that is a preceding sibling of an element with a particular class?
i.e.:
html:
<div id='element-to-find'></div>
<div ...
-3
votes
2answers
54 views
What's wrong with this piece of code? I don't know how to solve this issue [closed]
Trying to create an element with some custom properties
function x(){
var f=document.createElement("div");
this.name="monkey";
return f;
}
x.prototype.myFunction=function(){
...
0
votes
0answers
23 views
how to construct the WSDL with array structure
How can I construct the WSDL with the array structure?
For example if I want to send following XML to server, how can I construct the array element type in WSDL file? I use Apache server and PHP
...
0
votes
0answers
16 views
cannot create a dojo element right after destroyed it, use iscroll
I failed to create a new element, after destroyed it with following code:
<ul id="thelist">
<li id="pullDown">
<span ...
-3
votes
2answers
55 views
How to get Selenium Webdriver to recognize elements with changing id numbers within it
how do I get the xpath or css or ANYthing to click this ok button??? Problem is these ids and other attributes have tags that are changed every time a user goes to this particular page
...
0
votes
6answers
61 views
Getting Index of an item in an arraylist;
I have a Class called AuctionItem. The AuctionItem Class has a method called getName() that returns a String. If I have an ArrayList of type AuctionItem, what is the best way to return the index of an ...
0
votes
0answers
37 views
Is there some way else than document.createElement(“tag”) to create an element and set the tag later?
I want to create an Element object without a tagName property defined in it and later setting it ?Is there some way I could do it,I know that the tagName is the read only property but I want to create ...
0
votes
1answer
29 views
Raphael js get element's rotation
Is there a way to get an elements rotation value using the raphaeljs library? I'm sure there is but I can't find it anywhere in the documentation. I imagine its goes something like this ...
1
vote
3answers
33 views
referencing multiple values inside an option element
Similar question to Can an option in SELECT tag carry multiple values? - except I want to reference the values in Javascript
To recap:
I want to return more than one value for a selected item in a ...
0
votes
1answer
46 views
XSLT replace null element and attribute value
In the below XSLT I'm checking the following
If element is null then replace then replace it with the value of another element.
If attribute of that element is null then replace it with constant ...



