CRM 2013: Strange behavior when refreshing form or navigate back by browser's back-button
Date : March 29 2020, 07:55 AM
hop of those help? The problem sounds like it could be the URL you are using to open the new window/tab. Since you are using a new window to open your results, the URL should be crafted to open that specific record and use it as a basis for all actions performed in that new window. Try this:
|
Reload page on browser back/forward button in AngularJS with ui router
Date : March 29 2020, 07:55 AM
|
How to navigate back to last route with react-router?
Date : March 29 2020, 07:55 AM
hope this fix your issue to this answer from qnub on Github, I managed to resolve this issue: var LoginWrapper = React.createClass({
handleLogin: function() {
// redirect through ReactRouter if it have ability or through window:
window.location.href = this.targetUrl;
},
render: function () {
this.targetUrl = window.location.href; // save target URL from window on through ReactRouter if it have ability
return (
<Accounts.ui.LoginFormSet redirect={this.handleLogin}/>
);
}
});
|
angularjs ui router not supporting browser back and forward buttons
Date : March 29 2020, 07:55 AM
should help you out I got the resolution. I didn't set the default route, that's the reason it was not working. After setting default route, all was working fine.
|
Angular 2 router navigate, goes to page and comes back
Date : March 29 2020, 07:55 AM
|