这段代码给了我一些问题(richfaces 3.3.2.GA):
<rich:dragIndicator id="indicator"> </rich:dragIndicator>
<h:dataTable id="myData" value="#{resultArray}" var="data" >
<h:column>
<a4j:outputPanel>
<rich:dragSupport id="myDrag" dragIndicator="indicator" dragType="sug" dragValue="#{data}" >
<rich:dndParam name="name" value="#{data.name}" >
</rich:dndParam>
</rich:dragSupport>
<h:outputText value="#{data.name}"></h:outputText>
</a4j:outputPanel>
</h:column>
</h:dataTable>
<rich:panel id="myPanel">
<f:facet name="header">Drop Zone</f:facet>
<rich:dropSupport id="dropZone" acceptedTypes="sug" dropListener="#{dropSuggestion}" reRender="box"/>
</rich:panel>
<rich:dataTable id="box" value="#{nameList}" var="cap2">
<f:facet name="caption">Concepts chosen</f:facet>
<h:column>
<h:outputText value="#{cap2.name}"/>
</h:column>
</rich:dataTable>
该行动称为:
public void dropSuggestion(DropEvent event)
System.out.println("OntologyActions.dropSuggestions");
FacesContext context = FacesContext.getCurrentInstance();
OntologyActions dropItem = new OntologyActions();
String dropItemString=event.getDragValue().toString();
//Get request items
dropItem= (OntologyActions) event.getDragValue();
//Locate the position of the dropped element
int index = dropItem.resultArray.indexOf(dropItemString);
System.out.println("String: " + dropItemString + " DropItem: " + dropItem.resultArray.get(index).name + " Index: " + index);
//Add the element to the selected array
selectedSuggestionsArray.add(dropItem.resultArray.get(index));
nameList.add(dropItemString);
//resultArray.remove(dropItem);
}
问题是,当我将元素放入放置区时,不会发生任何操作,但我确信它可以看到此放置区,因为我看到绿色或红色,具体取决于acceptedTypes。
但是这个概念并没有从容器中删除,也没有添加到放置区。
当我到达此页面时,我收到此错误:
drop:元素用 [form1:j_id640:_form:myPanel] ID是 在DOM树中找不到。
可能元素没有客户端ID或 客户端ID尚未写入。免打扰的 禁用。请检查!
在JSF控制台中(但只是在第一次尝试中),使用firebug进行调试:
未找到节点“代码:”8
这对任何人都熟悉吗?
提前致谢
答案 0 :(得分:1)
我认为你已经错误地定义了dropListener
方法。它应该是dropListener="#{beanName.dropSuggestion}"
,而不仅仅是我认为的方法名称。这可以解释为什么没有采取任何行动。我不确定你得到的其他错误。