I discovered that by setting the cache value to false under the data model section, I seem to of solved my problem.
var dataModel = {
cache: false,
location: "remote",
sortDir: "down",
sorting: "local",
dataType: "xml",
recIndx: "recID",
url: "/sts/content/files/data/rawdata.xml",
getData: function (dataDoc) {
var obj = { itemParent: "item", itemNames: ["recID", "GLAccount", "GLName", "OrigAmt", "pctToTotal", "Fund", "Currency", "USD", "SAPDesc", "totpayable" ] };
return { data: $.paramquery.xmlToJson(dataDoc, obj) };
}
};
Thanks,
Peter