Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check if PrimeFaces widgetVar exists

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!

like image 254
n00b programmer Avatar asked Jun 29 '14 10:06

n00b programmer


Video Answer


1 Answers

You may use the following

if(PrimeFaces.widgets['fishTable']) {
   //widgetVar does exist
   PF('fishTable').filter();
}
like image 76
Hatem Alimam Avatar answered Oct 13 '22 17:10

Hatem Alimam