EN VI

Reactjs - how to navigate page in outlook addins office 365?

2024-03-09 23:00:28
Reactjs - how to navigate page in outlook addins office 365

i am trying to navigate page to next page in outlook addin . i was also install react router dom. but its not working in outlook addins.what is solution of navigate page to new page like login , signUp,ets .please help me about this issu.

this is outlook addins

Solution:

If the add-in needs to open a different page of the task pane you can use the window.location.replace method (or window.location.href) as the last line of the handler. The following example illustrates a possible solution:

function processMessage(arg) {
    // message processing code goes here;
    window.location.replace("/newPage.html");
    // Alternatively ...
    window.location.href = "/newPage.html";
}

Also you may try doing something like that:

window.open('https://yourwebsite.com')

Note, this should work if the domain is whitelisted in your manifest.

Answer

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login