DataScroller 与 bean 绑定后不渲染

发布于 2024-12-25 15:07:08 字数 999 浏览 1 评论 0原文

我的目标是在新搜索后重置数据滚动器的第一页。 这应该用以下语句完成:

getTableScroller().getUIData().setFirst(index);

我的问题是,在我将 datascroller 与 bean 绑定后,它将不会被渲染。就在我第二次点击搜索按钮后,它将被渲染。

Bean:

public class HistoryBean {
    private HtmlDataScroller tableScroller = new HtmlDataScroller();
    // ...

Facelet:

<t:dataScroller id="scroll_1"
                for="data"
                fastStep="10"
                pageCountVar="pageCount"
                pageIndexVar="pageIndex"
                styleClass="scroller"
                paginator="true"
                paginatorMaxPages="9"
                paginatorTableClass="paginator"
                paginatorActiveColumnStyle="font-weight:bold;"
                immediate="true"
                actionListener="#{historyBean.scrollerAction}"
                binding="#{historyBean.tableScroller}"
                >

如果我删除 binding 属性,它将在初始请求时呈现。我忘记了什么?

My goal is to reset the first page of the datascroller after a new search.
This should be done with this statement:

getTableScroller().getUIData().setFirst(index);

My problem is, after I bind the datascroller with a bean it will not be rendered. Just after I hit the search button a seccond time it will be rendered.

Bean:

public class HistoryBean {
    private HtmlDataScroller tableScroller = new HtmlDataScroller();
    // ...

Facelet:

<t:dataScroller id="scroll_1"
                for="data"
                fastStep="10"
                pageCountVar="pageCount"
                pageIndexVar="pageIndex"
                styleClass="scroller"
                paginator="true"
                paginatorMaxPages="9"
                paginatorTableClass="paginator"
                paginatorActiveColumnStyle="font-weight:bold;"
                immediate="true"
                actionListener="#{historyBean.scrollerAction}"
                binding="#{historyBean.tableScroller}"
                >

If I remove the binding attribute it will be rendered on initial request. What have I forgotten?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苄①跕圉湢 2025-01-01 15:07:08

您不应该将组件绑定到范围比请求范围更广的 bean。

而是直接在视图中指定 first 属性。

<t:dataScroller first="#{historyBean.index}" ...>

You shouldn't bind the component to a bean which is in a broader scope than the request scope.

Rather specify the first attribute just straight in the view.

<t:dataScroller first="#{historyBean.index}" ...>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文