5

我对 JSF 2.0 中的一个简单应用程序有一些问题。

我尝试构建一个支持 ajax 的待办事项列表。我有一些使用数据表显示的待办事项字符串。在这个数据表中,我有一个 commandLink 来删除一个任务。现在的问题是数据表没有被重新渲染。

    <h:dataTable id="todoList" value="#{todoController.todos}" var="todo">
        <h:column>
                <h:commandLink value="X" action="#{todoController.removeTodo(todo)}">
                    <f:ajax execute="@this" render="todoList" />
                </h:commandLink>
        </h:column>
        <h:column>
            <h:outputText value="#{todo}"/>
        </h:column>
    </h:dataTable>

谢谢你的帮助。

编辑(TodoController):

@ManagedBean
@SessionScoped
public class TodoController {

private String todoStr;
private ArrayList<String> todos;

public TodoController() {
    todoStr="";
    todos = new ArrayList<String>();
}

public void addTodo() {
    todos.add(todoStr);
}

public void removeTodo(String deleteTodo) {
    todos.remove(deleteTodo);
}

/* getter / setter */
}
4

7 回答 7

8

(看起来我没有足够的声誉来评论别人的答案)

我认为 FRotthowe 建议用另一个元素包装表格,并使用 <f:ajax> 标记中的绝对引用(即从文档的根目录命名所有父容器)来引用它。

像这样的东西:

<h:form id="form">
    <h:panelGroup id ="wrapper">
        <h:dataTable value="#{backingBean.data}" var="list">
            <h:column>
                <h:commandButton value="-" action="#{backingBean.data}">
                    <f:ajax render=":form:wrapper"/>
                </h:commandButton>
            </h:column>
    </h:dataTable>
    </h:panelGroup>
</h:form>

但是,使用绝对引用始终是问题的根源,并且随着视图的增长,重构时间会成倍增加。

有没有办法只从 <f:ajax> 标记呈现表格(防止 jsf 在 ajax 事件中添加那些烦人的“:number_of_row”)?

于 2010-04-12T08:09:33.507 回答
2

我假设<h:dataTable>包含在表单中?

在为这个问题苦苦挣扎了一段时间后,我用谷歌搜索了一个简单而干净的解决方案:将@form添加到<f:ajax>的渲染属性中,瞧!

完整示例:

<h:form id="theForm">
    <h:dataTable id="table" value="#{tasksMgr.allTasks}" var="task">

        <h:column>
           #{task.name}
        </h:column>

        <h:column>
            <h:commandButton id="removeTaskButton" value="X" action="#{tasksMgr.removeTask(task)}">
                <f:ajax render="@form" />
            </h:commandButton>
        </h:column>
    </h:dataTable>
</h:form>

帮助我的完整文章在这里:http: //blogs.steeplesoft.com/2009/10/jsf-2-hdatatable-and-ajax-updates/

于 2012-02-10T23:34:10.753 回答
2

使用此代码:

<h:form id="form">
<h:panelGroup id="panel">
    <h:dataTable id="todoList" value="#{todoController.todos}" var="todo">
        <h:column>
                <h:commandLink value="X" action="#{todoController.removeTodo(todo)}">
                    <f:ajax render=":form:panel" />
                </h:commandLink>
        </h:column>
        <h:column>
            <h:outputText value="#{todo}"/>
        </h:column>
    </h:dataTable>
</h:panelGroup>
</h:form>

于 2012-08-12T16:26:42.283 回答
1

我遇到了同样的问题,并认为如果你在桌子周围放置一个元素(例如)并重新渲染它,它会起作用。但是,我不太确定为什么会这样。任何人?

于 2010-03-27T09:50:33.400 回答
1

出于某种原因,JSF 正在修改按钮中 <f:ajax> 标记中的 id。如果我写这个 xhtml:

<h:form id="form">
    <h:commandButton value="Button">
        <f:ajax render="table"/>
    </h:commandButton>

    <h:dataTable id="table" value="#{tableData.data}">
        <h:column>
            <h:commandButton value="Button">
                <f:ajax render="tocoto"/>
            </h:commandButton>
        </h:column>
    </h:dataTable>
</h:form>

我得到这个html:

<form id="j_idt7" name="j_idt7" method="post" action="/WebApplication1/faces/index.xhtml" enctype="application/x-www-form-urlencoded">
    <input type="hidden" name="j_idt7" value="j_idt7" />
    <input id="j_idt7:j_idt8" type="submit" name="j_idt7:j_idt8" value="Button" onclick="mojarra.ab(this,event,'action',0,'j_idt7:table');return false" />

    <table id="j_idt7:table"><tbody>
        <tr>
            <td><input id="j_idt7:table:0:j_idt10" type="submit" name="j_idt7:table:0:j_idt10" value="Button" onclick="mojarra.ab(this,event,'action',0,'j_idt7:table:0');return false" /></td>
        </tr>
    </tbody></table>

     <input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="-7634557012794378167:1020265910811114103" autocomplete="off" />
</form>

请注意,第二个按钮中的 id 是“j_idt7:table:0”,而我希望像第一个按钮一样得到“j_idt7:table”。

这并不能解决问题,但可能有助于找到解决方法。

于 2010-03-31T03:56:07.593 回答
0

您需要将 prependId="false" 添加到您的 h:form

于 2010-04-02T04:02:59.997 回答
0

我遇到了同样的问题。

“有效”的一件事是为您的项目添加richfaces,并替换

h:datatable 

由一个

rich:datatable. 

这将生成正确的 id。

于 2012-02-22T14:33:43.790 回答