I am creating an outlook add-in with the Javascript API, and the ribbon has a button defined as below...
<Item id="msgCheckHelp">
<Label resid="checkHelpLabel"/>
<Supertip>
<Title resid="checkHelpTitle"/>
<Description resid="checkHelpDesc"/>
</Supertip>
<Action xsi:type="ExecuteFunction">
<FunctionName>checkHelp</FunctionName>
</Action>
</Item>
and then, the check help function is as defined here below...
function checkHelp (event) {
window.open("help", "_blank");
event.completed();
}
The problem is, this is not recognized as a user event. I tried looking at displayDialogAsync as an alternative to window.open, but it only loads as a popup as well.