Back to previous view and scrollbar - best practices SPAHandling back navigation in WebBrowser control preserving the previous scroll positionExtJS 4.2.1 Navigation between different Views - best practicexcode/storyboard: can't drag bar button to toolbar at topHow to cache view or maintain view state on history back in Angular 2How to retain scroll position in angular 2 lists?iOS Different tabs point to the same viewAngular4 modules: Best practicesPage does not scroll to top when i route from one component to other in angular 4(now 5)?Restore recycler view state when navigating back to the fragment - using the jetpacks navigation architectureAngular Best Practice for ag-Grid
Database accidentally deleted with a bash script
Will adding a BY-SA image to a blog post make the entire post BY-SA?
We have a love-hate relationship
What (else) happened July 1st 1858 in London?
THT: What is a squared annular “ring”?
Why is Arduino resetting while driving motors?
Why do IPv6 unique local addresses have to have a /48 prefix?
Diode in opposite direction?
Did US corporations pay demonstrators in the German demonstrations against article 13?
Varistor? Purpose and principle
Drawing ramified coverings with tikz
Folder comparison
MAXDOP Settings for SQL Server 2014
How do I implement a file system driver driver in Linux?
Why did the EU agree to delay the Brexit deadline?
A social experiment. What is the worst that can happen?
When quoting, must I also copy hyphens used to divide words that continue on the next line?
anything or something to eat
Is it possible to have a strip of cold climate in the middle of a planet?
Can not upgrade Kali,not enough space in /var/cache/apt/archives
Does the Mind Blank spell prevent the target from being frightened?
Drawing a topological "handle" with Tikz
Is it possible to use .desktop files to open local pdf files on specific pages with a browser?
Open a doc from terminal, but not by its name
Back to previous view and scrollbar - best practices SPA
Handling back navigation in WebBrowser control preserving the previous scroll positionExtJS 4.2.1 Navigation between different Views - best practicexcode/storyboard: can't drag bar button to toolbar at topHow to cache view or maintain view state on history back in Angular 2How to retain scroll position in angular 2 lists?iOS Different tabs point to the same viewAngular4 modules: Best practicesPage does not scroll to top when i route from one component to other in angular 4(now 5)?Restore recycler view state when navigating back to the fragment - using the jetpacks navigation architectureAngular Best Practice for ag-Grid
I'm currently implementing simple frontend application in Angular and I wonder what are best practices for following scenario.
I have two views: one of them is page with table of products (about 100), user is able to click on the product item and navigate to the second view, which is product details view. The product details view in some circumstances should go back to view with table and scroll down to element which I clicked.
The question is: what is best place to store information about expected scroll position?
angular navigation frontend soa
add a comment |
I'm currently implementing simple frontend application in Angular and I wonder what are best practices for following scenario.
I have two views: one of them is page with table of products (about 100), user is able to click on the product item and navigate to the second view, which is product details view. The product details view in some circumstances should go back to view with table and scroll down to element which I clicked.
The question is: what is best place to store information about expected scroll position?
angular navigation frontend soa
try this, medium.com/lacolaco-blog/…
– goyaltushar92
Mar 21 at 13:56
add a comment |
I'm currently implementing simple frontend application in Angular and I wonder what are best practices for following scenario.
I have two views: one of them is page with table of products (about 100), user is able to click on the product item and navigate to the second view, which is product details view. The product details view in some circumstances should go back to view with table and scroll down to element which I clicked.
The question is: what is best place to store information about expected scroll position?
angular navigation frontend soa
I'm currently implementing simple frontend application in Angular and I wonder what are best practices for following scenario.
I have two views: one of them is page with table of products (about 100), user is able to click on the product item and navigate to the second view, which is product details view. The product details view in some circumstances should go back to view with table and scroll down to element which I clicked.
The question is: what is best place to store information about expected scroll position?
angular navigation frontend soa
angular navigation frontend soa
asked Mar 21 at 13:50
jjusianiecjjusianiec
112
112
try this, medium.com/lacolaco-blog/…
– goyaltushar92
Mar 21 at 13:56
add a comment |
try this, medium.com/lacolaco-blog/…
– goyaltushar92
Mar 21 at 13:56
try this, medium.com/lacolaco-blog/…
– goyaltushar92
Mar 21 at 13:56
try this, medium.com/lacolaco-blog/…
– goyaltushar92
Mar 21 at 13:56
add a comment |
1 Answer
1
active
oldest
votes
My guess is I would store that kind of information
- in a
Service
but the data will not persist if the client refresh the entire page. - or in
localStorage
to keep the data if the client quit the app and come back later.
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%2f55281956%2fback-to-previous-view-and-scrollbar-best-practices-spa%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
My guess is I would store that kind of information
- in a
Service
but the data will not persist if the client refresh the entire page. - or in
localStorage
to keep the data if the client quit the app and come back later.
add a comment |
My guess is I would store that kind of information
- in a
Service
but the data will not persist if the client refresh the entire page. - or in
localStorage
to keep the data if the client quit the app and come back later.
add a comment |
My guess is I would store that kind of information
- in a
Service
but the data will not persist if the client refresh the entire page. - or in
localStorage
to keep the data if the client quit the app and come back later.
My guess is I would store that kind of information
- in a
Service
but the data will not persist if the client refresh the entire page. - or in
localStorage
to keep the data if the client quit the app and come back later.
answered Mar 21 at 13:54
Maxime LafarieMaxime Lafarie
7961726
7961726
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%2f55281956%2fback-to-previous-view-and-scrollbar-best-practices-spa%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
try this, medium.com/lacolaco-blog/…
– goyaltushar92
Mar 21 at 13:56