question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Autocomplete: Dropdown panel messed up when dynamic=true && querymode=server

See original GitHub issue

Write something in the filterbox, wait til the dropdownpanel shows up with results, now click the dropdown arrow. Issue arises.

Only happens when querymode=true and queryMode=server

    <c:set var="dropdown" value="#{cell.dropdown}"/>
    <p:autoComplete id="#{cellId}dd"
                    style="#{cell.cellStyle}"
                    value="#{dropdown.value}"
                    completeMethod="#{dropdown.getRowList}"
                    queryMode="server"
                    var="rowItem"
                    converter="dropdownConverter"
                    forceSelection="true"
                    itemValue="#{rowItem}"
                    itemLabel="#{empty rowItem or rowItem['class'].simpleName eq 'String' ? rowItem : rowItem.getCell(dropdown.popupReturnColumnName).formattedDataValue}"
                    dropdown="true"
                    scrollHeight="#{dropdown.popupHeight}"
                    emptyMessage="#{dropdown.emptyMessage}"
                    styleClass="ECCell #{cell.dynamicStyleClasses}"
                    panelStyleClass="ECMenuPanel"
                    pt:data-tooltip="#{cell.verificationStatusMessage}"
                    rendered="true"
                    onfocus="EC.focus.handleFocus(event)"
                    widgetVar="#{component.clientId}wv"
                    dynamic="true"

    >

        <f:attribute name="screenletId" value="#{cell.parentRow.dataModel.screenlet.uniqueId}" />
        <f:attribute name="EC_CELL" value="#{cell}" />
        <p:ajax event="change"     partialSubmit="true" process="#{cellId}dd" listener="#{dropdown.onValueChange}" oncomplete="changeStyleClass('#{component.clientId}');"
                update="#{cellId}dd" onstart="PF('#{component.clientId}wv').preventInputChangeEvent = false;" />
        <p:ajax event="query"      partialSubmit="true" process="#{cellId}dd" />

        <p:column id="#{cellId}ddC"><h:outputText value="#{rowItem.cellMap[rowItem.visibleCellNames[0]].formattedDataValue}"/>
            <ui:repeat id="#{cellId}ddR" rendered="#{rowItem != null and rowItem.visibleCellNames.size() gt 1}" value="#{rowItem.visibleCellNames}" var="colName" offset="#{rowItem.visibleCellNames.size() gt 1 ? 1 : 0}"  varStatus="status"><td>#{rowItem.cellMap[colName].formattedDataValue}</td></ui:repeat>
        </p:column>

    </p:autoComplete>
</ui:composition>

image

PF version 10.4

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:7 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
mellowarecommented, Apr 28, 2022

I submitted a PR for us to review with the changes above also so we could make sure all integration tests pass.

1reaction
mellowarecommented, Apr 29, 2022

I would keep using your patch for now. I need some more people to review it and I need to study it further and maybe write an Integration Test for it.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Mat Auto Complete does not open dropdown panel after ...
To fix this we can open the panel manually. Inject the MatAutocompleteTrigger to the method along with event.
Read more >
Autocomplete dropdown doesn&#38;#039;t close when lost ...
The user clicks off the autocomplete to defocus it and expects the dropdown to close. Actual behavior. The problem only manifests in the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found