Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
About Me

Integrated hardware and software systems

Favorite Tags
Member Avatar for renoua

Hello, I have a xml file which has 106 books.. I xsl tranformed it and here: [CODE]<xsl:value-of select=" bioghist/bioghist/chronlist/chronitem/date"/> [/CODE] is the date every book was created with that format: ddmmyyyy how can i add slashes? and make it like that dd/mm/yyyy ?? thanks in advance :)

Member Avatar for awofesof
0
3K
Member Avatar for renoua

Hi, How can I add via javascript an Event Attribute like onkeyup="xyz(this.value)" in a text input ? function x() { if (condition) { document.definesearch.textsearch. ???? ; } } definesearch is the name of the form. textsearch is the name of the text input. I tried this : document.definesearch.textsearch.onkeyup="xyz(this.value)"; but it …

Member Avatar for fxm
0
92
Member Avatar for renoua

Hello, I have the part of code presented below. It has 2 radiobuttons and 2 text inputs. When user selects the first radiobutton(value="searchw"), I would like to make textsearch1 enabled and textsearch2 disabled. And the opposite process.. when user selects the second radiobutton(value="searcht") I would like to make textsearch2 enabled …

Member Avatar for rajarajan2017
0
93
Member Avatar for renoua

Hi again! I have this javascript code [CODE]function displayResult2(id) { xml=loadXMLDoc("anna.xml"); xsl=loadXMLDoc("c011.xsl"); // code for IE if (window.ActiveXObject) { ex=xml.transformNode(xsl); document.getElementById("right").innerHTML=ex; } // code for Mozilla, Firefox, Opera, etc. else if (document.implementation && document.implementation.createDocument) { var xsltProcessor=new XSLTProcessor(); xsltProcessor.importStylesheet(xsl); resultDocument = xsltProcessor.transformToFragment(xml,document); document.getElementById("right").appendChild(resultDocument); } }[/CODE] and I want to pass …

0
58
Member Avatar for renoua

Hello, I have this part of php code... [CODE] <?php $dom = new DomDocument(); $dom->load("anna.xml"); $xp = new domxpath($dom); $unitid = $xp->query("/ead/archdesc/dsc/c01/did/unitid"); foreach ($unitid as $check) { print '<a href="#" onClick="displayResult2(' . $check->textContent . ')">' . $check->textContent . ' </a>'; // I presented the unitid's of a xml file and …

Member Avatar for renoua
0
246
Member Avatar for renoua

hello, I need some help with my assignment. I have a XML file (EAD) that has some general info about 106 old documents and the library that are located and a description for every one in 106 <c01> tags . Each document has an id in c01/did/unitid (unitid tag). I …

0
59