Hi there,
I am facing a problem regarding data from a xml source.
I am currently working on a Dropdownlist.
My source is defined as the following:
var source =
{
datatype: "xml",
datafields: [
{ name: 'AdminKeywordValue', map: 'm\\:properties>d\\:AdminKeywordValue', type: 'string' },
{ name: 'AdminKeywordAlias', map: 'm\\:properties>d\\:AdminKeywordAlias', type: 'string' }
],
url: url,
root: "entry",
record: "content"
};
Unfortunately it does not display anything.
Additionaly here is part of my XML source:
As you can see, there are several records ‘content’. The first one is the wrong one. I want the second ‘content’ at the bottom.
Is there a way to tell the record property of the dropdownlist that it has to get the data from the second ‘content’ record?
Thank you in advance.