Run time repositioning angular components views
up vote
0
down vote
favorite
I wanted to reposition the components runtime and reload the page,
do i need to create components dynamically to achieve below
From:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
To:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
how can i achieve this in angular 6
angular
add a comment |
up vote
0
down vote
favorite
I wanted to reposition the components runtime and reload the page,
do i need to create components dynamically to achieve below
From:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
To:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
how can i achieve this in angular 6
angular
If these are the only components that are going to be swapped, then you can simply add those component tag twice and activate accordingly withngIf
. If the view is changing a lot, then its better to dynamically insert the tags into the dom.
– Amit Chigadani
Nov 21 at 9:38
thanks Amit, how should i dynamically insert, do u have any link which will help.
– Abhishek
Nov 21 at 10:20
dzone.com/articles/…
– Amit Chigadani
Nov 22 at 9:03
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I wanted to reposition the components runtime and reload the page,
do i need to create components dynamically to achieve below
From:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
To:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
how can i achieve this in angular 6
angular
I wanted to reposition the components runtime and reload the page,
do i need to create components dynamically to achieve below
From:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
To:
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<NG6componet1 ></NG6componet1>
</div>
<div class="swiper-slide">
<NG6componet3 ></NG6componet3>
</div>
<div class="swiper-slide">
<NG6componet2 ></NG6componet2>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
how can i achieve this in angular 6
angular
angular
asked Nov 21 at 9:36
Abhishek
12
12
If these are the only components that are going to be swapped, then you can simply add those component tag twice and activate accordingly withngIf
. If the view is changing a lot, then its better to dynamically insert the tags into the dom.
– Amit Chigadani
Nov 21 at 9:38
thanks Amit, how should i dynamically insert, do u have any link which will help.
– Abhishek
Nov 21 at 10:20
dzone.com/articles/…
– Amit Chigadani
Nov 22 at 9:03
add a comment |
If these are the only components that are going to be swapped, then you can simply add those component tag twice and activate accordingly withngIf
. If the view is changing a lot, then its better to dynamically insert the tags into the dom.
– Amit Chigadani
Nov 21 at 9:38
thanks Amit, how should i dynamically insert, do u have any link which will help.
– Abhishek
Nov 21 at 10:20
dzone.com/articles/…
– Amit Chigadani
Nov 22 at 9:03
If these are the only components that are going to be swapped, then you can simply add those component tag twice and activate accordingly with
ngIf
. If the view is changing a lot, then its better to dynamically insert the tags into the dom.– Amit Chigadani
Nov 21 at 9:38
If these are the only components that are going to be swapped, then you can simply add those component tag twice and activate accordingly with
ngIf
. If the view is changing a lot, then its better to dynamically insert the tags into the dom.– Amit Chigadani
Nov 21 at 9:38
thanks Amit, how should i dynamically insert, do u have any link which will help.
– Abhishek
Nov 21 at 10:20
thanks Amit, how should i dynamically insert, do u have any link which will help.
– Abhishek
Nov 21 at 10:20
dzone.com/articles/…
– Amit Chigadani
Nov 22 at 9:03
dzone.com/articles/…
– Amit Chigadani
Nov 22 at 9:03
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53409047%2frun-time-repositioning-angular-components-views%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
If these are the only components that are going to be swapped, then you can simply add those component tag twice and activate accordingly with
ngIf
. If the view is changing a lot, then its better to dynamically insert the tags into the dom.– Amit Chigadani
Nov 21 at 9:38
thanks Amit, how should i dynamically insert, do u have any link which will help.
– Abhishek
Nov 21 at 10:20
dzone.com/articles/…
– Amit Chigadani
Nov 22 at 9:03