xsl-list
[Top] [All Lists]

RE: javascript- variable question - in XSL document

2003-09-19 11:16:53
From: Bruce Rojas-Rennke [mailto:brr(_at_)4dv(_dot_)net]
Sent: Friday, September 19, 2003 11:53 AM
Subject: [xsl] javascript- variable question - in XSL document


I have a javascript function in an XSL page, and can't get 
the beast to
handle it's own variable.
- Is there something about being in an xsl doc that buggers 
javascript? The
below code will  simply output 'varNow' in the URL string, 
instead of it's
decalred value of 'testText'..

Am I crazy? Or at least can someone can illuminate my ignorance?

This has nothing to do with XSLT: you just don't know how to append the
contents of variables to JavaScript strings.

<script language="javascript">
  function getPL(form) {
    if (form.rptPeriod[0].selected) {
      varNow = "testText";
      
window.open('http://192.168.1.13/OnePointBPO/popup.cfm?selectA
cct=varNow',

This should read:

window.open('http://192.168.1.13/OnePointBPO/popup.cfm?selectAcct='+varNow,

etc.

If you're not sure if it's JavaScript, HTML markup or XSLT that is causing
you problems, the best approach is to create a static model of your desired
output, then debug it before integrating it into your stylesheet.

hth,
b.

| brian martinez                           
brian(_dot_)martinez(_at_)cendant(_dot_)com |
| lead gui programmer                                    303.357.3548 |
| cheap tickets, part of trip network                fax 303.357.3380 |
| 6560 greenwood plaza blvd., suite 400           englewood, co 80111 |
| cendant travel distribution services   http://www.cheaptickets.com/ |

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>