how to navigate page in outlook addins office 365

34 Views Asked by At

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

1

There are 1 best solutions below

0
Eugene Astafiev On BEST ANSWER

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.