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 badges2 Answers
Reset to default 5Have 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}"
/>