-
Notifications
You must be signed in to change notification settings - Fork 531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A way to not reroute some url modification. #41
Comments
Sorry, I don't understand. Can you rephrase? Annotated screenshots might help! |
In the Meanwhile building a complex app such as this user-friendly database-interface, and one of the goal of the app is that whatever the user is looking at, he can copy the Take notice of the clicking on between tabs There are 3 possible ways the user could see the same content:
Item (2) and (3) works perfectly, but item (1) has a lot of complications since:
to change the browser URL so that users can share the TL:DR; If you could make the |
@ivanceras I solve this exact problem on the profile page which has the article tabs. When you click the tabs the URL changes so you can share either URL to open the page on that tab. At the same time, when on the page and clicking the tab that page doesn’t reload. For e.g. Maksim Esteban My Articles and Favourited Articles tab. Additionally, I could exploit the same technique on the home page with the tabs and the tags. |
Let's say if the user clicks on a button that opens a record, the code will open initialize and open a view, as an enhancement, the url is modified to allow users to share links, but then it will make the app do a reroute/setroute page then open exactly the same view.
So, is there a way to do this:
user clicks on a record, the program initialize and open the view, the url is then programatically modified for link sharing purposes <--- should not do a reroute.
user manually modify the url in the browser <--- should do a reroute to the pages.
The text was updated successfully, but these errors were encountered: