I am using a combobox from richfaces. Check the following code
<rich:comboBox id="combo" value="#{thebean.selectedValue}" enableManualInput="false"> <f:selectItems value="#{thebean.listOfValues}" /> </rich:comboBox>
I am using Rich faces 3.3.2 and JSF 1.2. Scenario: In my application when user enters some text in a text field or a text area we have to enable the apply button. ...