Great product! Lots of fun! I need to pull data into the grid from our server in XML format as below:
request = new SigmaRequest();
request.open("get","
http://myserver/MYAPP.PGM",true);
request.onresult = function(){
var doc = request.getXMLDoc();
grid.bindXML(doc,"employee");
}
request.send();
As per your AJAX example, this works fine in Explorer (or Exploder <grin>). Do you have any way of allowing the AJAX function to work in Firefox? This code does hang in Firefox, which is what a majority of us use. We have other AJAX/CGI apps like this running successfully in Firefox.
Any help would be appreciated.
Thank you!
jef