M
Martin Eckart
Hi NG,
In my form I need to check via Code if there are fields which have the value
"xsi:nil" and if they have then I need to replace that value.
What I did is:
var donation1 = GAYE.selectSingleNode("Registration/donation1").text;
if (donation1.getAttribute("xsi:nil"))
donation1.removeAttribute("xsi:nil");
The Error message I get is at line 2 of the snippet:
"Object doesn't support this property or method"
Searching the web I was not able to find the correct answer. Maybe this is
the right place
.
Thanks,
Martin
In my form I need to check via Code if there are fields which have the value
"xsi:nil" and if they have then I need to replace that value.
What I did is:
var donation1 = GAYE.selectSingleNode("Registration/donation1").text;
if (donation1.getAttribute("xsi:nil"))
donation1.removeAttribute("xsi:nil");
The Error message I get is at line 2 of the snippet:
"Object doesn't support this property or method"
Searching the web I was not able to find the correct answer. Maybe this is
the right place
Thanks,
Martin