• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Changing the param of an applet with XSL or JS ...

 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a html (XSL) page that call an applet.
this applet takes parameters...
(easy for now!)
I need to create params with a incremental variable...
Like that:
<PARAM NAME="NODE1" ...>
<PARAM NAME="NODE2" ...>
<PARAM NAME="NODE3" ...>
<PARAM NAME="NODEX" ...>
Where X will be 4 then 5 then 6 ....
HOW CAN I DO THAT???
I cant use JavaScript because the </script> and I cant refer to my vairable... (I think...) and in my XSL, I cant use <xsl:variable name="myCPT" select="0">
<xsl:variable name="myCPT" select="$myCPT+1">
???
I know that dosent sound clear but i'm not able to tell it more friendly.... hope that you will understand and reply!
Take care
(here it's 25C outside with a beautifull sun! and I had to code inside!!!)
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can use JavaScript to build applet parameters, we do it on a project here. What you need to do is build the whole HTML page at runtime using "document.write()" in javaScript. It's clumsy, but it works:
 
He baked a muffin that stole my car! And this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic