I have developed a sample Excel Add-in with two Buttons in the Ribbon.On the click of first button, an HTML page is getting displayed in the Task Pane. On the click of the second button, the contents of the task pane is getting updated (another HTML page is getting rendered).
The add-in was working fine for older version of Excel 2016 for Mac until I updated it to 16.7. After updating, clicking the second Button no longer updates the page in the Task Pane.
Is there any change that I need to make in the manifest to make sure that the add-in works properly in the latest version of Excel 2016 for Mac?
Control Definitions from Manifest:
<Control xsi:type="Button" id="SmartView.ButtonPanelApple">
<Label resid="residLabelPanelLogin" />
<Supertip>
<Title resid="residLabelPanelLogin" />
<Description resid="residToolTipZone" />
</Supertip>
<Icon>
<bt:Image size="16" resid="icon_login_16" />
<bt:Image size="32" resid="icon_login_32" />
<bt:Image size="80" resid="icon_login_80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>MyPane</TaskpaneId>
<SourceLocation resid="residLoginUrl" />
</Action>
</Control>
<Control xsi:type="Button" id="SmartView.ButtonPanelOptimize">
<Label resid="residLabelPanelOptimize" />
<Supertip>
<Title resid="residLabelPanelOptimize" />
<Description resid="residToolTipMode" />
</Supertip>
<Icon>
<bt:Image size="16" resid="icon_optimize_16" />
<bt:Image size="32" resid="icon_optimize_32" />
<bt:Image size="80" resid="icon_optimize_80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>MyPane</TaskpaneId>
<SourceLocation resid="residLogoutUrl" />
</Action>
</Control>