Is it possible to use NgxUiLoaderHttpModule & NgxUiLoaderRouterModule simultaneously in module. ts?How to change spinner text size and text color?spinner is not getting empty androidBinding select element to object in AngularAngular JS fast resolve and slow controller page is empty while the data loadsAngular: Resolver delays component load even after the service has returnedAngular 5 Loading Spinner on Startup with Lazy-Loaded Route/ModuleAngular 4 - Loading spinner not dissapearing after content is loaded in IE9 & IE10to implement a spinner in angular2+How to show loading bar in angular 4how to make route to wait till feature module is loaded in angular
A curve pass via points at TiKz
Does the 500 feet falling cap apply per fall, or per turn?
Why does my circuit work on a breadboard, but not on a perfboard? I am new to soldering
Reaction of borax with NaOH
Infinitive of "мрут"
What food production methods would allow a metropolis like New York to become self sufficient
Two researchers want to work on the same extension to my paper. Who to help?
tikz: not so precise graphic
Plastic-on-plastic lubricant that wont leave a residue?
How to select certain lines (n, n+4, n+8, n+12...) from the file?
Make all the squares explode
How did Thanos not realise this had happened at the end of Endgame?
How to make a language evolve quickly?
Can a tourist shoot a gun in the USA?
Can I use my laptop, which says 100-240V, in the USA?
Was this character’s old age look CGI or make-up?
How to slow yourself down (for playing nice with others)
Why was the Ancient One so hesitant to teach Dr. Strange the art of sorcery?
When a land becomes a creature, is it untapped?
What are the components of a legend (in the sense of a tale, not a figure legend)?
Exclude loop* snap devices from lsblk output?
How can this pool heater gas line be disconnected?
A cryptic tricolour
Why was castling bad for white in this game, and engine strongly prefered trading queens?
Is it possible to use NgxUiLoaderHttpModule & NgxUiLoaderRouterModule simultaneously in module. ts?
How to change spinner text size and text color?spinner is not getting empty androidBinding select element to object in AngularAngular JS fast resolve and slow controller page is empty while the data loadsAngular: Resolver delays component load even after the service has returnedAngular 5 Loading Spinner on Startup with Lazy-Loaded Route/ModuleAngular 4 - Loading spinner not dissapearing after content is loaded in IE9 & IE10to implement a spinner in angular2+How to show loading bar in angular 4how to make route to wait till feature module is loaded in angular
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am working on angular 7 application. I am using NgxUiLoaderRouterModule to get spinner while routing, it works fine. But the spinner disappears before the data loads from http request. I tried to resolve by adding NgxUiLoaderHttpModule in module.ts.
Still spinner is not appearing till my request gets complete.
angular spinner ngx-ui-loader
add a comment |
I am working on angular 7 application. I am using NgxUiLoaderRouterModule to get spinner while routing, it works fine. But the spinner disappears before the data loads from http request. I tried to resolve by adding NgxUiLoaderHttpModule in module.ts.
Still spinner is not appearing till my request gets complete.
angular spinner ngx-ui-loader
Have you tried using resolver?
– Chellappan
Mar 23 at 13:08
add a comment |
I am working on angular 7 application. I am using NgxUiLoaderRouterModule to get spinner while routing, it works fine. But the spinner disappears before the data loads from http request. I tried to resolve by adding NgxUiLoaderHttpModule in module.ts.
Still spinner is not appearing till my request gets complete.
angular spinner ngx-ui-loader
I am working on angular 7 application. I am using NgxUiLoaderRouterModule to get spinner while routing, it works fine. But the spinner disappears before the data loads from http request. I tried to resolve by adding NgxUiLoaderHttpModule in module.ts.
Still spinner is not appearing till my request gets complete.
angular spinner ngx-ui-loader
angular spinner ngx-ui-loader
asked Mar 23 at 11:55
Santhosh SD VillivakamSanthosh SD Villivakam
115
115
Have you tried using resolver?
– Chellappan
Mar 23 at 13:08
add a comment |
Have you tried using resolver?
– Chellappan
Mar 23 at 13:08
Have you tried using resolver?
– Chellappan
Mar 23 at 13:08
Have you tried using resolver?
– Chellappan
Mar 23 at 13:08
add a comment |
1 Answer
1
active
oldest
votes
The reason why NgxUiLoaderHttpModule not working is we were using http imported from '@angular/http' which is deprecated from ang 5 version. On updating http to httpClient (from '@angular/common/http) Spinner worked for me.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313466%2fis-it-possible-to-use-ngxuiloaderhttpmodule-ngxuiloaderroutermodule-simultaneo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The reason why NgxUiLoaderHttpModule not working is we were using http imported from '@angular/http' which is deprecated from ang 5 version. On updating http to httpClient (from '@angular/common/http) Spinner worked for me.
add a comment |
The reason why NgxUiLoaderHttpModule not working is we were using http imported from '@angular/http' which is deprecated from ang 5 version. On updating http to httpClient (from '@angular/common/http) Spinner worked for me.
add a comment |
The reason why NgxUiLoaderHttpModule not working is we were using http imported from '@angular/http' which is deprecated from ang 5 version. On updating http to httpClient (from '@angular/common/http) Spinner worked for me.
The reason why NgxUiLoaderHttpModule not working is we were using http imported from '@angular/http' which is deprecated from ang 5 version. On updating http to httpClient (from '@angular/common/http) Spinner worked for me.
edited Mar 27 at 12:06
answered Mar 27 at 11:55
Santhosh SD VillivakamSanthosh SD Villivakam
115
115
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313466%2fis-it-possible-to-use-ngxuiloaderhttpmodule-ngxuiloaderroutermodule-simultaneo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried using resolver?
– Chellappan
Mar 23 at 13:08