Nevermind, I think I figured it out.
var myXML = document.getElementById('daxml');
var desc = myXML.selectSingleNode("//group/item/desc");
desc.setAttribute('listing','234');
I need to change an attribute located in my xml using javascript but can not seem to find how to do it.
<html>
...
<xml id=daxml>
<group>
<item>
<desc listing='123'>
</item>
</group>
</xml>
In the above sample, I need to change listing to 234.
Any ideas?
I wasn't aware that eclipse worked with html. I'll have to find the extension for this and check it out. I've been doing all of my html by hand (and probably will continue to do so) for my professional development... but who knows.
I would also agree that Eclipse would be too much to handle...
I'm looking at taking over a website for an NFP organization which was developed with FrontPage. Since I don't own FrontPage, and it appears to have been discontinued by Microsoft, I was wondering what all of you might recommend. The tool must be easy to use as when I deliver the site to...
PixPocket,
Have you looked into using XMLHttpRequest? The open method for this allows credentials to be passed.
XMLHttpRequest.open(sMethod, sUrl [, bAsync] [, sUser] [, sPassword])
In the graph stylesheet, see if you can find the following calls and change them, or add them.
setSeriesFillColor(0,new Color(255,0,0));
setSeriesFillColor(1,new Color(0,255,0));
This will set the first sieries color to red and the second to green.
I'm trying to join two tables together where the key from the host table is a two digit number stored in packed format, and the secondary table is a four digit number stored in a char(10) field.
For example, the value from the host would be 23 and the value that it would match to in the guest...
As long as the output is HTML you could use a css stylesheet.
TABLE FILE HTMP0003
SUM
C_AVG_READ AS 'Prom de READ' OVER
c_avg_proc as 'Prom de PROC'
BY MES
ACROSS LOG_DESCRIPTION AS ''
ACROSS-TOTAL
ON TABLE SET HTMLCSS ON
ON TABLE SET CSSURL
ON TABLE SET CSSURL '/css/mystyle.css'
ON TABLE...
If you create a master for FAILED_LOGONS, then you can join the results back to the db2 table. Otherwise, you could probably make the data1 file comma delimited for the in statement, by using ON TABLE HOLD AS DATA1 FORMAT COM.
SQL DB2 SET SERVER DB2_SERVER
SQL DB2
Select USERNAME from...
You need to return two values, one for the actual value and the other for the display value. The result then needs to be returned in XML format.
TABLE FILE MYFILE
PRINT DST.DISPLAY_VALUE
BY KEY_VALUE
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE PCHOLD FORMAT XML
END
Just to keep the thread complete - I did find how to start isqlplus.
The following path is what oracle defaulted to durring installation, but the command is
/u01/app/oracle/product/10.1.0/db_1/bin/isqlplusctl start
Ken,
Correct me if i'm wrong, but isqlplus is an application that is run through an http listener on port 5560 and would have nothing to do with how I logged in. If I were to open up port 5560 on the firewall, I should be able to use isqlplus from any computer on the network without actually...
Thanks Mufasa,
I tried to find the initorcl.ora file for the pfile setting but could not find it. I did find the memory setting in the initdm.ora file and tried that but it stated that the database name was invalid or missing.
Just on a hunch, I tried just the startup command by itself and...
I'm a newb to both oracle and linux, but I just installed oracle 10g on linux last night and everything seemed to be working fine until I tried to bring the oracle db back up today.
After entering the following command (which I assume starts oracle)
STARTUP OPEN PFILE=$ORACLE_HOME/dbs/init.ora...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.