I am facing an issue with my jsf application while running it on IE.
The selectcheckboxmenu
on jsf behaves faulty and has the checkboxes of the menu items shifted below the items, The checkboxes are still there. Below is the screenshot of what i am facing :
[IMG]http://i43.tinypic.com/8yb976.jpg[/IMG]
the code for the selectcheckboxmenu is given below :
<p:selectCheckboxMenu value="#{formBean.selectedMovies}" label="Movies"
filter="true" filterText="Filter" filterMatchMode="startsWith"
panelStyle="width:220px">
<f:selectItems value="#{formBean.movies}" />
</p:selectCheckboxMenu>
Please kindly tell me where am I going wrong and what is the problem. Thanks in advance.