I am using the Primefaces Extensions BlockUI component for global ajax events like this:
<p:ajaxStatus onstart="PF('globalBlockUI').block({ fadeIn: 0 })" onsuccess="PF('globalBlockUI').unblock({ fadeOut: 0 })"/>
<pe:blockUI id="globalBlockUI" widgetVar="globalBlockUI"
css ="{}"
cssOverlay="{}">
...
</pe:blockUI>
I would like to disable the fade effect. Setting the {fadeIn: 0} option like in JQuery seems to be ignored.
How do I disable the fade effect?