Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a web form using jsf. In that i need to disable the while the form gets loading,then again it wil enable after completing the form loading

share|improve this question

2 Answers

Put a <script> right after the button which disables it.

<h:form id="myform">
    <h:commandButton id="mybutton" />
    <script>document.getElementById('myform:mybutton').disabled = true;</script>

On window.onload, enable it again. It doesn't matter where this script is placed.

<script>window.onload = function() { document.getElementById('myform:mybutton').disabled = false; }</script>
share|improve this answer

That can be done only on the client side, with javascript:

  • disable it (set "enabled" to false) in a javascript snippet right after the button. Or in fact disabled it at the very start by setting disabled="true"
  • onload (or at the end of the body) enable it.
share|improve this answer
1  
Top of body section? The button element isn't there in the HTML DOM tree then. So document.getElementById('buttonid').disabled=true; won't work over there. Over there, you'd basically need to do it onload, but at that point the button doesn't need to be disabled anymore :) – BalusC Jun 17 '11 at 15:15
sorry, perhaps I meant 'right after the button'. – Bozho Jun 17 '11 at 15:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.