posted 14 years ago
Hi,
I have two buttons save and finish.
I want to enable the button finish whenever I click the save button.
page1.jsp.
<script>
InitialLoad()
{
document.getElementById('finish').disabled = true;
}
save(){
document.getElementById('finish').disabled = false;
}
</script>
strutsconfig.xml
<forward name="success" path="atre.dodUpgrade.show.page1"/>
Using the above I can enable it temporarly. But whenever I call the forward page it on action class
The Problem is page Refresh again and it shows disabled button for finish.
what could be the solution for this?
Thanks