gpt4 book ai didi

javascript - 强制选择突出显示的 p :autoComplete item when panel is hidden by clicking outside

转载 作者:行者123 更新时间:2023-11-29 10:40:58 26 4
gpt4 key购买 nike

我的自动完成有问题(错误?)。

MyFaces 2.2.9 与 PrimeFaces 5.1

下面这只是一个重现我的错误的例子。我的模态对话框中有一个自动完成框。

  1. 案例 1:我输入了一些内容,从自动完成列表中选择“hello”并提交。转换器获取我的个人 ID 并搜索合适的人,一切正常。
  2. 案例 2(错误 1):我输入“h”并在我的模态区域中单击 h保持并关闭列表。 (当我提交我的表格时 h 只消失了,没有转换器调用)但我认为 h 应该消失,因为力选择?
  3. 案例 3(错误 2):另一个错误更难。当我输入“你好”(在列表中)在我的框中并单击我的模式对话框区域,你好留下来!当我提交表单时,我的转换器中出现“hello”并返回“null”,因为他只搜索 ID。

案例 3 的更多内容:我尝试用更多的细节来解释它(见评论):我在我的自动完成框中键入一些内容,其中包含一个字符串,它在我的框中。 enter image description here

比我点击我的模式区域。 (不!直接在可选的你好上)。比起打招呼似乎也可以接受。

enter image description here

现在我点击我的测试按钮并在我的转换器中.只有字符串。

我的预期行为应该是出现我的 ID。 id 只有在我使用正常选择时才会出现。

希望你能帮助我。感谢您的宝贵时间:)

问题:这是一个错误还是我的误解?

XHTML:

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:p="http://primefaces.org/ui">

<h:head>
<title>test</title>
</h:head>

<h:body>
<h:form onkeypress="return event.keyCode != 13">
<p:commandButton value="show Dialog"
oncomplete="PF('dgl').show()"
update=":dglform"/>
</h:form>

<p:dialog widgetVar="dgl" modal="true" resizable="false">
<h:form id="dglform" onkeypress="return event.keyCode != 13">
<p:autoComplete id="auto"
forceSelection="true"
converter="personConverter"
value="#{myController.selectedPerson}"
var="per"
itemLabel="#{per.name}"
itemValue="#{per}"
completeMethod="#{myController.search}">
</p:autoComplete>

<p:commandButton value="test" update="@form" />
</h:form>
</p:dialog>
</h:body>
</html>

转换器:

@FacesConverter("personConverter")
public class PersonConverter implements Converter{

@Override
public Object getAsObject(FacesContext arg0, UIComponent arg1, String arg2) {
System.out.println(arg2);

//Search my entity with id...
return null;
}

@Override
public String getAsString(FacesContext arg0, UIComponent arg1, Object arg2) {
if(arg2 instanceof Person){
Person p = (Person) arg2;
return String.valueOf(p.getId());
}
return null;
}
}

Controller :

@ManagedBean
@ViewScoped
public final class MyController implements Serializable {

private static final long serialVersionUID = 1L;
private Person selectedPerson;
private List<Person> persons;

@PostConstruct
public void init() {
persons = new ArrayList<Person>();
persons.add(new Person(1, "hello"));
persons.add(new Person(2, "hello2"));
}

public void selectListener(SelectEvent event){
System.out.println("SELECT!");
}

public Person getSelectedPerson() {
return selectedPerson;
}

public void setSelectedPerson(Person selectedPerson) {
this.selectedPerson = selectedPerson;
}

public List<Person> search(String qry) {
return persons;
}
}

最佳答案

这不一定是 PrimeFaces 中的错误,但可能是对案例 forceSelection="true" 的疏忽用来。您可能希望此处的行为与在输入中按 Tab 键时相同。

您最好将其报告为 issue给 PF 们。同时,假设 PrimeFaces 5.1,您可以自己解决这个问题:

  1. 复制一份raw source code原件 autocomplete.js 作为/resources/primefaces/autocomplete/autocomplete.js在您的网络应用中。

  2. 前往 line 170 .这是处理自动完成面板的隐藏事件的地方。

  3. 在第 181 行,第二个和第三个之间 if block ,插入以下代码:

    if ($this.cfg.forceSelection) {
    $this.items.filter('.ui-state-highlight').click();
    }

    这将强制在 forceSelection="true" 时自动选择突出显示的项目。被使用。

  4. 加载定制的autocomplete.js在你的 <h:body> 之上(不是 <h:head> !)如下:

    <h:outputScript library="primefaces" name="autocomplete/autocomplete.js" target="head" />

这确实有些麻烦,但是由于这些函数是私有(private)的,所以不能轻易地从外部覆盖它们。附加另一个监听器也不起作用,因为它明确地执行 $.off()在任何以前的听众上。

关于javascript - 强制选择突出显示的 p :autoComplete item when panel is hidden by clicking outside,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29474817/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com