-
Notifications
You must be signed in to change notification settings - Fork 3k
RFC - State Parameter changes without reloading state #397
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
Comments
If you favor nested states over bunched together views it seems like you can pretty much do that today. Or am I misunderstanding? |
This is already on the roadmap. See #100. |
@nateabele Is someone already working on this? I wouldn't mind knocking this out. |
@thebigredgeek I know @ksperling had talked about it. Not sure what the status is though. Let's give him a chance to comment, but I know he's busy, so if we don't hear from him by tomorrow, find me on Freenode in #angularjs and we can go over the designs for it. |
Is there an existing solution for this? |
I think it would be great to be able to shift state parameters without actually reloading the state. The use case that I am thinking about (this actually applies to myself):
A developer wants to be able to reproduce a given state via the URL, meaning he wants the user to be able to copy and paste a given URL to another user and the application rebuilds that exact state (same filtering options on tables, same sort order, same items displayed, etc) for inter-user portability. However, each time a filter is applied, the entire state has to be refreshed in order to accomplish this, which is extremely inefficient. The developer does not need to re-render all of his various views, he only needs to be able to WRITE to the state parameters so that the parameters are kept in sync with various controller and filter data.
Any thoughts regarding this?
The text was updated successfully, but these errors were encountered: