I have a Primefaces commandButton, that calls a datatable filter in its onComplete. The datatable is referenced by a widgetVar:
<p:commandButton id="addFishBtn"
title="Add Fish"
update="fishForm:FishTbl"
action="#{backingBean.addFish()}"
oncomplete="fishTable.filter()"/>
The problem is, that fishTable doesn't always exist when this button is pressed. It it doesn't exist, the app just gets stuck. I tryed something like this from other SO questions:
oncomplete="if(typeof(fishTable) != 'undefined') {fishTable.filter()}"
But it doesn't seem to be doing anything. Is there any proper way to check if a widgetVar currently has any value?
Thanks!
You may use the following
if(PrimeFaces.widgets['fishTable']) {
//widgetVar does exist
PF('fishTable').filter();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With