Closed strtob closed 1 month ago
Hi @strtob,
Thanks for reaching out. Based on the pasted XML, I think it's the additional whitespace in some of your fields (like ID). White space between tags is passed to the application and I don't think we're trimming the GUID on our end. So, instead of having XML like
<Id>
1bf1ebb0-46fc-4fbb-ad40-49dc0928f4ce
</Id>
Try this:
<Id>1bf1ebb0-46fc-4fbb-ad40-49dc0928f4ce</Id>
The original sample's manifest should be formatted like that in the repo.
Let me know if that doesn't fix the problem.
Hi @AlexJerabek, what a stupid mistake, thanks a lot! :-)
In Outlook 2021, unfortunately this button don't want to appear, have you any idea? :-(
<ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
<OfficeTab id="TabDefault">
<Group id="CategoriesGroupAppointmentOrganizer">
<Label resid="CategoriesGroupLabel"/>
<Control xsi:type="Button" id="AppointmentOrganizerSelectButton">
<Label resid="SelectButtonLabel"/>
<Supertip>
<Title resid="SelectButtonLabel"/>
<Description resid="SelectButtonDescription"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="Taskpane.Url"/>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
I've started with npm run build and then npm start. There are no erros and outlook opens, according to settings the add-in is installed but no button appears if you open a new appointment?
I've got it, just need to remove the requirement tag:
<Requirements>
<bt:Sets DefaultMinVersion="1.12">
<bt:Set Name="Mailbox"/>
</bt:Sets>
</Requirements>
Question
I'm new to office_add-in and try to get a bestter understanding based on you samples like this https://github.com/OfficeDev/Office-Add-in-samples/tree/main/Samples/outlook-check-item-categories
My manifest.xml look like this:
I get this error:
In the manifest.xml an ID is defined. Whats wrong?
Thank for your efforts to help! Tobi