Thank Acoder
I will study the tutorial and the examples
User Profile
Collapse
-
build Table using javascript from xml.file
Hi,
I am newby in Xml
I want to build a table that i can later manipulate in javascript
The Sample.xml contains several Assay with varying number of sample; it looks like that
[HTML]
<Assay AssayType="DNA" AssayNumber="3" >
<Sample>
<Destination Position="D2"/>
<Source SourcePlate="P3 " SourcePos="A2" sourceConc=2"/>... -
Problem to create HTML table from XML file using javascript
Hi,
I am a complet newby in XML; I just want to create a table for datas coming from XML file
[HTML] <Study StudyNumber="3" >
<Sample>
<Destination Position="D2"/>
<Source SourcePlate="P3 " SourcePos="A2" sourceConc=2"/>
</Source>
</Sample>
<Sample>
<Destination Position="D12"/>... -
-
Congratulation i_am clint ,
Your solution is great .
You saved my day.thanksLeave a comment:
-
I am not sure to understand correctly,
[HTML]
function AddNewL(){
var Object = new ActiveXObject(' Scripting.FileS ystemObject'); var LirTxt2 = Object.GetFile( "F:\Test.tx t");
var ForReading = 1;
var myText = LirTxt2.OpenTex tFile("F:\Test. txt", ForReading);
myText = ts.ReadLine();
var ForWriting=2; //to be able to write
...Leave a comment:
-
-
problem with 'Scripting.FileSystemObject'
Hi ,
I tried to write a Line at the end of my file Test.txt.
[HTML]function AddNewL(){
var Object = new ActiveXObject(' Scripting.FileS ystemObject'); var LirTxt2 = Object.GetFile( "F:\Test.tx t");
var ForWriting=2; //to be able to write
var doc2 = LirTxt.OpenAsTe xtStream(ForWri ting,true); doc2.WriteLine( "byebye); //
doc2.Close(); //close the file
} [/HTML]
...
No activity results to display
Show More
Leave a comment: