xsl-list
[Top] [All Lists]

Antwort: RE: XML-Data from JavaScript into XSL

2002-11-04 06:28:56

Hi,

If my English would be better I would explain it more detailed.

There's a JS-function if you changed something in a dropdown-field.
Depending on what you changed (selectedIndex) an other dropdown-field fills
with the corresponding entrys from an xml-file.


function patternClick()
{
  choiceReport=document.patternFrm.report.selectedIndex;

if(choiceReport == 1)
{
   // this part I would want in JS, like
document.createdFrm.yearStart.options[0] = new Option(year,year);
  <select>
  <xsl:for-each select="options/option1">
    <option>
      <xsl:value-of select="."/>
    </option>
  <xsl:for-each>
</select>

}
else
{
  // // this part I would want in JS, like
document.createdFrm.yearStart.options[0] = new Option(year,year);
  <select>
  <xsl:for-each select="options/option2">
    <option>
      <xsl:value-of select="."/>
    </option>
  <xsl:for-each>
</select>
}
}


But how can I do that?


Thanks
Jonny


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



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