我想通过我提供的id从托管bean中找到一些UIComponent
。
private UIComponent getUIComponent(String id) {
return FacesContext.getCurrentInstance().getViewRoot().findComponent(id) ;
}
我定义了一个p:inputTextarea
为:
<p:inputTextarea id="activityDescription" value="#{adminController.activityDTO.activityDescription}" required="true" maxlength="120"
autoResize="true" counter="counter" counterTemplate="{0} characters remaining." cols="80" rows="2" />
现在,如果调用方法作为getUIComponent("activityDescription")
,它返回null
,但如果我调用它作为getUIComponent("adminTabView:activityForm:activityDescription")
,那么我可以得到org.primefaces.component.inputtextarea.InputTextarea
实例。
是否有任何方法来获得组件只有id,即"activityDescription"而不是绝对id,即"adminTabView:activityForm:activityDescription"?
您可以使用以下代码:
public UIComponent findComponent(final String id) {
FacesContext context = FacesContext.getCurrentInstance();
UIViewRoot root = context.getViewRoot();
final UIComponent[] found = new UIComponent[1];
root.visitTree(new FullVisitContext(context), new VisitCallback() {
@Override
public VisitResult visit(VisitContext context, UIComponent component) {
if (component != null
&& id.equals(component.getId())) {
found[0] = component;
return VisitResult.COMPLETE;
}
return VisitResult.ACCEPT;
}
});
return found[0];
}
这段代码将只找到树中第一个包含您传递的id
的组件。如果树中有两个具有相同名称的组件(如果它们在两个不同的命名容器下,这是可能的),您将不得不做一些自定义操作。
我试了一下这段代码,它很有帮助:
private static UIComponent getUIComponentOfId(UIComponent root, String id){
if(root.getId().equals(id)){
return root;
}
if(root.getChildCount() > 0){
for(UIComponent subUiComponent : root.getChildren()){
UIComponent returnComponent = getUIComponentOfId(subUiComponent, id);
if(returnComponent != null){
return returnComponent;
}
}
}
return null;
}
谢谢
也许是不可能的。FacesContext.getCurrentInstance().getViewRoot().findComponent(id)
方法只返回一个UIComponent
。ViewRoot是作为树构造的,所以如果你在视图中有两个表单,每个表单都有一个带有id="text"
的组件,它们将有它的父组件添加到id中,这样它们就不会冲突。如果将两个id="text"
组件放在同一个表单中,则会抛出java.lang.IllegalStateException
。
如果你想找到所有的组件与搜索id,你可以写一个方法来实现:
List<UIComponent> foundComponents = new ArrayList();
for(UIComponent component: FacesContext.getCurrentInstance().getViewRoot().getChildren()) {
if(component.getId().contains("activityDescription")){
foundComponents.add(component);
}
}
或者如果你想找到第一次出现:
UIComponent foundComponent;
for(UIComponent component: FacesContext.getCurrentInstance().getViewRoot().getChildren()) {
if(component.getId().contains("activityDescription")){
foundComponent = component;
break;
}
}
把prependId="false"
放到这个文本区域所在的表单中
是的,在NamingContainers
的所有父组件中,您必须添加属性prependId="false"
-它肯定会在<h:form>
中工作,并且应该在其他组件中工作。
如果不能通过.xhtml文件中的属性设置,则必须通过编程设置该值。
问题作者评论后的建议:
如果您正在使用的组件中没有这样的属性,请尝试这样写查找方法:
private UIComponent findComponent(String id, UIComponent where) {
if (where == null) {
return null;
}
else if (where.getId().equals(id)) {
return where;
}
else {
List<UIComponent> childrenList = where.getChildren();
if (childrenList == null || childrenList.isEmpty()) {
return null;
}
for (UIComponent child : childrenList) {
UIComponent result = null;
result = findComponent(id, child);
if(result != null) {
return result;
}
return null;
}
接下来调用
UIComponent iamLookingFor = findComponent(myId, FacesContext.getCurrentInstance().getViewRoot());
那有帮助吗?