n00b programmer
n00b programmer

Reputation: 2701

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!

Upvotes: 11

Views: 7160

Answers (1)

Hatem Alimam
Hatem Alimam

Reputation: 10048

You may use the following

if(PrimeFaces.widgets['fishTable']) {
   //widgetVar does exist
   PF('fishTable').filter();
}

Upvotes: 24

Related Questions