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

In my application i have three buttons, If i click on one button I have to disable all the button till the operation on that button is finished.

I dont know how to disable the other two buttons. Kindly help.

share|improve this question

1 Answer

up vote 1 down vote accepted

Use JavaScript to get the HTML element from the DOM and then set its disabled attribute.

document.getElementById('clientId').disabled = true;

Note that the 'clientId' is the autogenerated HTML element ID. Rightclick page and View Source to find it out. If this contains prefixes like j_id and so on, then you need to give all parent UINamingContainer components like <h:form>, <h:dataTable>, <f:subview> and so on a fixed component ID, so that the client ID doesn't need to be autogenerated anymore.

share|improve this answer
Thanks it worked. But already gave all the Id to the buttons and the form,So i used them. – Hari May 1 '10 at 15:01

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.