3.2.0

V2 - When is AW.XML.Table response object filled?

Hi,
I'm using the code below to get XML data from a URI. Is there a convenient
way of finding out when the asynchronous request has completed?

myModel = new AW.XML.Table();
myModel.setRows(rowsXPath);
myModel.setURL(dataURI);
myModel.request();

Many thanks,
BT
BT
November 10,
I am trying to do this as well. Has anyone found a way?
January 19,
http://activewidgets.com/active.http.request/response.html

var request = new Active.HTTP.Request;
         request.setURL("http://www.activewidgets.com/messages/all.rss");
         request.setAsync(true);
         request.response = function(doc) {
            alert(doc);
         }
Dmitry
January 19,

This topic is archived.

See also:


Back to support forum