最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Primefaces RowToggle - How to differentiate between Row Expansion and Row Collapse? - Stack Overflow

programmeradmin1浏览0评论

I am using Prmefaces 3.5. I use the RowToggler in a datatable. Whenever the RowToggle button is clicked, I use to do some database access operations and display a grid with the the accessed data.

Whenever the toggle button is clicked the below listener is called, in which the operations are done

<p:ajax event="rowToggle" listener="#{controller.onRowToggle}" 

But the problem lies in calling this method. Not only when the row is expanded, this method is called, but also when the row is collapsed. The database operations doesn't need to be done while the row is collapsed, and so this is turning out to be an expensive operation.

Please suggest how to know if the row is expanded or collapsed, so I could do the operations conditionally?

I am using Prmefaces 3.5. I use the RowToggler in a datatable. Whenever the RowToggle button is clicked, I use to do some database access operations and display a grid with the the accessed data.

Whenever the toggle button is clicked the below listener is called, in which the operations are done

<p:ajax event="rowToggle" listener="#{controller.onRowToggle}" 

But the problem lies in calling this method. Not only when the row is expanded, this method is called, but also when the row is collapsed. The database operations doesn't need to be done while the row is collapsed, and so this is turning out to be an expensive operation.

Please suggest how to know if the row is expanded or collapsed, so I could do the operations conditionally?

Share Improve this question asked May 25, 2014 at 14:03 ManishManish 7403 gold badges13 silver badges25 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5

Have you tried using ToggleEvent#getVisibility() metod in your listener? Here's example:

public void onRowToggle(ToggleEvent event) {
    if (event.getVisibility() == Visibility.VISIBLE) {
        // your code here
    }
}

If you want to make the RT only if the row is being expanded, this will work:

<p:ajax
    event="rowToggle"                                            
    onstart="return cfg.ext.params[0].name.indexOf('_rowExpansion') != -1"
    listener="#{fooViewModel.onRowToggle}"
/>
发布评论

评论列表(0)

  1. 暂无评论