ICEfaces
  1. ICEfaces
  2. ICE-11434

ace:autoCompleteEntry: Clearing of input not possible

    Details

    • Type: Bug Bug
    • Status: Open
    • Priority: Major Major
    • Resolution: Unresolved
    • Affects Version/s: 4.3
    • Fix Version/s: None
    • Component/s: ACE-Components
    • Labels:
      None
    • Environment:
      Wildfly 13/14
      Java 8
      Windows 10

      Description

      Against the issue ICE-9676, it is currenty not possible the clear the input field after pressing a button.
      Simple example with facet entry rendering:
      <ace:autoCompleteEntry rows="25" listVar="entry" width="800"
      id="entryid" reset="#{testCtrl.resetText}" filterMatchMode="none"
      style="margin-left: 10px;"
      filterBy="#{entry.fieldForFiltering}"
      binding="#{testCtrl.autoCompleteEntryBinding}"
      value="#{testCtrl.inputTextValue}"
      listValue="#{testCtrl.possibleEntries}"
      valueChangeListener="#{testCtrl.entrySelected}"
      textChangeListener="#{testCtrl.triggerEntryFiltering}">

      <f:facet name="row">
      <h:panelGrid columns="1" rules="all" width="100%"
      columnClasses="autocompleteWidth">
      <h:outputText value="#{entry.fieldForFiltering}" />
      </h:panelGrid>
      </f:facet>
      <ace:ajax event="valueChange" render="@all" />

      </ace:autoCompleteEntry>

      <ace:pushButton actionListener="#{testCtrl.pressButton}" type="button"
      styleClass="linkButton">
      <ace:ajax render="@all" execute="@form" />
      <h:graphicImage value="../resources/img/add_green.png" style="float:right" />
      </ace:pushButton>

      Content of pressButton:
      public void pressButton(ActionEvent event) {
      resetText = true;
      inputTextValue = null
      }

        Activity

        There are no comments yet on this issue.

          People

          • Assignee:
            Unassigned
            Reporter:
            Jörn Gabrowski
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated: