[richfaces-issues] [JBoss JIRA] (RF-13587) rich:autocomplete - suggestion box doesn't show up at all

Pavol Pitonak (JIRA) issues at jboss.org
Mon Mar 24 07:51:13 EDT 2014


    [ https://issues.jboss.org/browse/RF-13587?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12955464#comment-12955464 ] 

Pavol Pitonak edited comment on RF-13587 at 3/24/14 7:49 AM:
-------------------------------------------------------------

I could reproduce with Metamer 4.3.6-SNAPSHOT on WildFly 8.0.0.Final. [~amittikoo84], what version of JSF implementation and what browser do you use?
                
      was (Author: ppitonak):
    [~amittikoo84], I'm not able to reproduce. What version of JSF implementation and what browser do you use?
                  
> rich:autocomplete - suggestion box doesn't show up at all
> ---------------------------------------------------------
>
>                 Key: RF-13587
>                 URL: https://issues.jboss.org/browse/RF-13587
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: component-input
>    Affects Versions: 4.3.5
>         Environment: Weblogic
>            Reporter: Amit Tikoo
>            Assignee: Pavol Pitonak
>              Labels: richfaces
>             Fix For: 4.3.5
>
>
> I am using a <rich:autocomplete> component but the suggestion box just doesn't show up. Here is a simple case I'm trying:
> XHTML:
> {code}
> <h:form id="amit" prependId="false">
>         <rich:autocomplete mode="ajax" minChars="1" autofill="true"        var="station" autocompleteMethod="#{segmentationBean.autocomplete1}" >
>         <rich:column styleClass="sexy">
>             <b>#{station}</b>
>         </rich:column>
>     </rich:autocomplete>
> </h:form>
> {code}
> JAVA:
> {code}
>   public List<String> autocomplete1(String request){
>         List<String> suggestions = new ArrayList<String>();
>         suggestions.add("test 1");
>         suggestions.add("test 2");
>         suggestions.add("test 3");
>         suggestions.add("test 4");
>         return suggestions;
>     }
> {code}
> This shows up in logging (using <a4j:log/>)
> {code}
> error[14:47:03.644]: Received 'error at malformedXML' event from <span id=j_idt5 class=rf-au ...>
> error[14:47:03.644]: [status=200] During update: javax.faces.ViewState not found
> {code}
> Also i can see the suggestion if i switch the mode to "Client"

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the richfaces-issues mailing list