Hi, > Any chance data can be null at that point? Does your code handle that well?
Already handled in the ADG case but I check the other I've just changed.
if (typeof(data) == "object" || typeof(data) == "xml")
{
if (dataField != null)
if (dataField in data)
data = data[dataField];
else
data = null;
}
Thanks,
Justin
