This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: rich:autocomplete> the autocomplete list items cannot be selected by mouse click. Defaults to first item.liuliu Aug 29, 2014 3:01 AM (in response to rohangk)1 of 1 people found this helpfulit's a bug in 4.3.6, fixed in future 4.3.8 or 4.5. 
- 
        2. Re: Re: rich:autocomplete> the autocomplete list items cannot be selected by mouse click. Defaults to first item.rohangk Aug 29, 2014 11:14 AM (in response to liuliu)Ok, i was able to fix the issue. I was using <span> to encapsulate the label as a child withing the autocomplete component which was causing this issue. <rich:autocomplete var=dev .......> <span id="#{dev.id}" >#{dev.label} </span> </rich:autocomplete> I changed this to - <rich:autocomplete var=dev .......> #{dev.label} <span id="#{dev.id}"/> </rich:autocomplete> This fixed the issue for me. 
 
    