14 posts since
Nov 2, 2009
To be more specific, you will need to find the names of our input fields. They are something like in_xxx_xxx. You can run your project and use View Source of the rendered page to find these ids. Then you can edit the .jsp file for the transformation and include something like this:
<SCRIPT>
document.getElementById("in_12_34").tabIndex = 1;
document.getElementById("in_56_78").tabIndex = 2;
document.getElementById("in_90_12").tabIndex = 3;
</SCRIPT>
Then run it again.