3.2.0

XML over HTTP in browser different from IE

there's any samples how to retrieve and show in browser different from IE (e.g. MOZILLA, FIREFOX, etc.), XML data over http? samples included with AW works only with IE...

thanks in advance

giovanni
November 8,
Most of the samples should work with Mozilla and Firefox. Some samples are marked 'IE only' because they make HTTP request to another domain (like Yahoo or MSDN) and Mozilla/Firefox does not allow this for security reasons. If you put your page and the data source to the same web server - all examples will work both in IE and Mozilla/Firefox.
Alex (ActiveWidgets)
November 8,
thks very much...i've seen that's the real problem is ... data are present but i can't see it...the grid object inside <table> isn't show properly (in firefox 1.0 and mozilla 1.7)...

have anyone some tips to solve this?

thanks
November 10,
try fixing the size of the table.

#myTableID {
width: 400px;
height: 300px;
table-layout:fixed;
}
Alex (ActiveWidgets)
November 10,
Also make sure that you're escaping any data that's coming into the application. For instance, if you're bringing in XML from PHP, you'll want to make sure that you use htmlentities on anything in between your XML tags, because there might be some brackets in there that will cause the XML to be malformed.
mysticweb.org
March 24,

This topic is archived.

See also:


Back to support forum