Topic: Dynamic 'Navaigation' of XML data |
|
---|---|
Author | Thread |
Neurotic (0) Inmate Newly admitted From: |
posted 11-10-2004 12:08
Hi, |
Paranoid (IV) Inmate From: A graveyard of dreams |
posted 11-10-2004 12:59
The only way you can change the content on the webpage without reloading is to use JavaScript. The other option would be using some server-side language, but with that you would have to reload the page each time you changed something. quote:
|
Paranoid (IV) Inmate From: France |
posted 11-10-2004 13:20
If the output of your XSL transformation is an HTML page, then you can use JavaScript, and especially the XmlHttpRequest object ( which AFAIK is supported in IE6, FF, MZ, Op 7.60, Safari 1.2 ) to load some fragments of XML. |
Obsessive-Compulsive (I) Inmate From: |
posted 11-10-2004 13:44
Thanks for your replies, |
Paranoid (IV) Inmate From: A graveyard of dreams |
posted 11-10-2004 21:35
One solution is always to load all information to begin with and the hide the parts that aren't needed using JavaScript. You can then easily redisplay them with JavaScript without the page having to reload. But if you end up with a lot of unnessecary information loaded each time, this might not be such a good idea... |