Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have custom action defined in my SharePoint 2007 feature. It adds new item to document library menu.

<CustomAction Id="UserInterfaceLightUp.MobiusDiscretionaryArchivingLibMenu"
    RegistrationType="List"
    RegistrationId="101"
    GroupId="ActionsMenu"
    Location="Microsoft.SharePoint.StandardMenu"
    Sequence="1002"
ImageUrl = "/_layouts/IMAGES/MyImage.gif"
Title="My Title"/>

When I deploy it to SP 2010 I get the same behavior for 2007 UI mode and these actions becomes available from "Custom Commands" in 2010 UI mode. Is there any way to not allow menu appear in "Custom Commands". For this I would like to create ribbon buttons for 2010 UI mode only and menus for 2007 UI mode only.

Thanks beforehand.

share|improve this question

2 Answers

Have a look at our series about porting a SharePoint 2007 solution to 2010 while maintaining compatibility with both.

In summary, to solve your problem we maintain a separate SPHive_2010 folder that contains files that will be used to overwrite the SP2007 specific ones during the build process. We build 2 separate WSP files.

share|improve this answer
Thanks. But I would like to work only with SP2010 but the difference is only in UI modes (v3 and v4). I am not going to have one solution for both versions of SharePoint only UI versions. – petro.sidlovskyy Feb 18 '11 at 16:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.