cursor « RichFaces « JSF Q&A





1. How to remove text cursor in rich:ComboBox in Richfaces?    stackoverflow.com

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>
The items are displayed and is not editable. However, the text cursor appears when you click ...

2. richfaces text and text area on rerender unable to use keboard up and down arrow keys to move the cursor    stackoverflow.com

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. ...