How can I disable the loading screen which appears when using @ViewScoped
with DeltaSpike?
Ok, looks like this is working:
@Specializes
public class UkaClientWindowConfig extends DefaultClientWindowConfig {
private static final long serialVersionUID = 1L;
@Override
public ClientWindowRenderMode getClientWindowRenderMode(
FacesContext facesContext) {
return ClientWindowRenderMode.NONE;
}
}