My issue involves an XML file being transformed by a specific XSL file (XSLT 1.0), which in turn includes multiple other XSL files with various templates.
The challenge is to add a button to the rendered XML that, when clicked, opens the same XML in a new window but using different templates from the XSL files.
While adding the button and opening a new window are straightforward tasks, the dilemma lies in how to instruct the XSL to utilize these alternate templates once it's opened in the new window. My initial thought was to employ JavaScript for launching the new window, yet I'm uncertain of how to set or pass a parameter to distinguish which templates should be used via XSLT/XPATH.
Any assistance you can provide would be greatly appreciated. Thank you!