Hi,
I have
isc.DynamicForm.create({
ID:"docForm",
dataSource: docDetails,
useAllDataSourceFields: true,
width:350
})
]
});
and isc.DataSource.create({
ID:"docDetails",
dataFormat:"xml",
dataURL:"/viewDocumentProperties.xml",
recordXPath:"//document",
fields:[
{title:"Index No. & *Title", type:"text", name:"indexNum"}
],
showPrompt:false
});
The field shows up but doesn't pull data from XML file.
What am I declaring incorrectly. Pl help
Thankyou
I have
isc.DynamicForm.create({
ID:"docForm",
dataSource: docDetails,
useAllDataSourceFields: true,
width:350
})
]
});
and isc.DataSource.create({
ID:"docDetails",
dataFormat:"xml",
dataURL:"/viewDocumentProperties.xml",
recordXPath:"//document",
fields:[
{title:"Index No. & *Title", type:"text", name:"indexNum"}
],
showPrompt:false
});
The field shows up but doesn't pull data from XML file.
What am I declaring incorrectly. Pl help
Thankyou
Comment