thanks for the great response.
i am actually constructing my html in java code, so the second way is easier for me
somehow the second way
>><input type="text" name="npa" value="" onchange="return (setFocus('nxx') &&
submitIfNotBusy(MyForm, 'refreshScreen'))"
size="3" maxlength="3" class="listText" />
doesnt work on my system, i mean the page doesnt get submitted.
can you plz check if it works on your system
Main Topics
Browse All Topics





by: exalkoniumPosted on 2009-09-29 at 08:24:03ID: 25450093
When you run two functions inline in code, one gets returned and and it will skip running the other function. You could combat this two ways: You can next both function inside a master function, or require the return of both functions inline. I prefer the first way:
Select allOpen in new window