How can I disable the loading screen which appears when using @ViewScoped with DeltaSpike?
How to disable loading screen of DeltaSpike
621 Views Asked by Thomas At
2
There are 2 best solutions below
0
Kuhpid
On
You can change the used HTML Page and customize it like you want:
Copy the deltaspike-jsf-module-impl-x.x.jar#/static/windowhandler.html
to your classes Folder. For maven e.g.:
src/main/resources/static/windowhandler.html
Keep in mind that changes to this file will not be published while running for e.g. TomEE in Eclipse. You have to restart the container.
Related Questions in JSF
- Strange java.lang.ArrayIndexOutOfBoundsException rendering error in jsf application under high load
- h:outputStylesheet inside ui:repeat
- IntelliJ warns "Cannot resolve variable" on EL variables declared in parent page of include
- How to instantiate a backing bean on page load
- How to disable default keyCode event in Primefaces?
- How to define a style for ul which appears automatically
- How to add '%' symbol in textbox using jsf and jsp?
- Primefaces onkeyPress triggerevent
- h:commandButton action method is not invoked
- f:ajax resetValues="true" does not seem to work
- Primefaces datatable duplicate "No records found" while doing column freeze for empty records
- How to provide a file download from a JSF backing bean using af:commandMenuItem?
- Remove message from h:outputText ofter time
- How to change the position of confirmation box in jsf primefaces?
- commandLink not working when images are in same line
Related Questions in JSF-2
- Strange java.lang.ArrayIndexOutOfBoundsException rendering error in jsf application under high load
- Ajax-update only a component attribute, not the whole component nor its children
- How to instantiate a backing bean on page load
- How to add '%' symbol in textbox using jsf and jsp?
- Primefaces datatable duplicate "No records found" while doing column freeze for empty records
- How to provide a file download from a JSF backing bean using af:commandMenuItem?
- Using multiple FluidGrids in one form
- Masks in JSF2 with rich:jQuery?
- IceFaces message not showing
- Add table plugin to primefaces editor
- this.jq.draggable is not a function when using primefaces dialog framework
- Setting f:setPropertyActionListener value with a f:param value
- It is possible to download file on p:poll
- Spring Boot with Jsf views
- JSF, Target unreachable
Related Questions in CDI
- Spring-boot+JPA EntityManager inject fails
- EJB injection fails in custom ConstraintValidator on JPA persist
- JBoss and CDI Producer
- Custom scope in CDI seems to require beans.xml
- Is @DependsOn necessary for another CDI bean that is injected?
- CDI - ContextNotActiveException - WebBeans context with scope type annotation @RequestScoped does not exist within current thread
- Fully disable Weld JSF integration in Wildfly 8.2
- Use JSF, JPA, JTA, JAAS, CDI, Bean Validation with Tomcat?
- How to create JBoss EAR project with JPA, EJB and CDI elements
- Validation Error: Value is not valid with CDI
- How to inject EmtityManager to BaseDao in wildfly8?
- Transaction Interceptor CDI JPA JavaSE
- OSGI+CDI: strange behaviour with system printers detecting
- How to hold values in a CDI conversion scope?
- @InterceptorBinding / CDI/ EJB 3.2 - problems with injection
Related Questions in VIEW-SCOPE
- @postConstruct method with parameter
- How can I know if a viewScope variable has been initialized
- How to get all opened JSF pages, and close or redirect from server side?
- jsf viewscoped bean - set values for every page(tabs)
- passing value while using view scope in jsf
- ViewExpiredException when i use @ViewScoped
- Ajax not supported for viewscope in jsf
- @PostConstruct method is called even if the ManagedBean has already been instantiated (e.g. on AJAX-calls)
- Setting view scope on JSF 2.2
- How and when is a view scope bean removed from LRU cache in JSF?
- JSF2.2.1 + form binding + ViewScoped trouble
- Why are expired @ViewScoped beans not destroyed until the session expires
- <p:fileUpload> recreates @ViewScoped bean on every request
- p:fileUpload inside p:dialog losing @ViewScoped values
- @predestroy of entity1 is being called on third redirect of any other entity in second tab
Related Questions in DELTASPIKE
- ContextNotActiveException: WELD-001303: No active contexts for scope type org.apache.deltaspike.core.api.scope.GroupedConversationScoped
- Deltaspike Data module: no bean matches the injection point
- CDI (Weld) + DeltaSpike + Converstation
- Seam Solder @MessageBundle generating the implementation classes Maven Error
- Apache Delta Spike - QueryInvocationContext
- DeltaSpike with JTA data sources
- Alternative to Deltaspike Multi-Window Handling in Seam 3 Applikation
- DeltaSpike Handle exception and redirect (ajax request)
- How to disable loading screen of DeltaSpike
- Deltaspikes @WindowScoped working with TomEE?
- How to catch FacesFileNotFoundException
- How to prevent loading a full database recursive tree at once?
- How does DeltaSpike @Schedule wait finish before a new execution?
- Message driven beans and transactions
- DeltaSpike @Scheduled does not firing
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Ok, looks like this is working: