tags:

views:

19

answers:

1

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 on the selected item. How to remove that ? It should be completely uneditable. No text cursor should appear.

Thanks.

A: 

Then just use a normal dropdown, no combobox. Use h:selectOneMenu.

BalusC
Ofcourse ! Thanks man !
Prabhat
You're welcome.
BalusC