The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
21 views

SP2010 farm scoped custom workflow action not available in designer

We're trying the "Update Items By List View" custom workflow action available here: http://efspwfactivities.codeplex.com/releases/view/63115 It works fine in one of our development environments ...
0
votes
2answers
40 views

What's this Location ID?

I try to add a custom action to the menu shown in the picture. But I don't know the Location ID for that... or is it not possible to add there a custom context?
1
vote
2answers
232 views

Is it possible to open an SharePoint app as Modal dialog from a Custom Action

I want to create a site action menu item Custom Action which opens a Sharepoint 15 app (default.aspx) as modal dialog. is it possible? thanks.
0
votes
0answers
49 views

Custom Workflow Activity for merging users in field + assignedTo value from task (problems & questions)

First of all, a little explanation what this is about: I'm currently trying to write a custom workflow activity for use in SharePoint Designer 2010. I've got a column in my list - let's call it ...
2
votes
3answers
330 views

list item menu's custom action on content type (only SPD2010)

Is it possible to have a custom action List Item Menu in a document library on a specific content type, created in SPD 2010? In code I know is possible, but I'd rather try it out in SP Designer. Also, ...
2
votes
0answers
333 views

How to add CustomAction button in Ribbon of DocumentLibrary in SharePoint Online?

How can I add a CustomAction button in Ribbon of Document Library in SharePoint Online (Office-365) for Sandbox solution without any code ? I have created team-site in SharePoint Online. And having ...
2
votes
4answers
221 views

Is it possible to package, deploy, and use my own image for a ribbon CustomAction in a SharePoint-hosted App for SharePoint 2013

I've been working on a SharePoint-hosted app for SharePoint 2013. In order to "extend the reach" of the app a bit, I've included a CustomAction that will add a button to each document library's ribbon ...
3
votes
2answers
751 views

CustomAction: UrlAction to open link in a new window

I have added a menu item to the Personal Actions menu by creating a CustomAction like so: <CustomAction Id="myCustomAction" GroupId="PersonalActions" ...
1
vote
1answer
156 views

Custom Action with dynamic UrlAction

I have added a menu item to the Personal Actions menu by creating a CustomAction like so: <CustomAction Id="myCustomAction" GroupId="PersonalActions" ...
0
votes
0answers
107 views

How to change Text/Label of CustomAction button of Ribbon?

I want to change the Text/Label when I click on the CustomAction button of Ribbon. It should be change from my Javascript function because I want to check the condition in that. My CustomAction ...
1
vote
1answer
228 views

'RootWebOnly' property of a CustomAction only works in sandboxed solutions? Why?

I have a web application scoped feature which provisions a number of site collections and subsites. The feature also contains a navigation element, which adds a new custom action group to the site ...
0
votes
2answers
386 views

The type is not registered as safe “Custom Actions”

I am trying to create a custom actions using wsp builder, My folder structure is something like this, Now when I try to deploy solution nothing comes up however I get this error in my ULS log, ...
2
votes
4answers
978 views

How to invoke server side code from Ribbon

I want to create a Button in my Ribbon which modifies some fields in my items.. In details I want to select more than one element and select my "link" button and make the elements be "linked" by an ...
0
votes
1answer
85 views

How can I hide the Theme link in Site Settings for SharePoint 2010

Can I create a customAction to hide the Theme link in Site Settings in SharePoint 2010 ? If so, what does the Element.xml look like ? I've tried the following: <Elements ...
1
vote
0answers
52 views

Accessing full url of 'View in browser' link in document library

I'm trying to get the url of the 'view in browser' link that appears in the context menu for a document in the document library. I have a custom command on the menu that I have created which calls a ...
0
votes
0answers
106 views

sandbox workflow action: read taxonomyfield value and give the full path value back

I like to build a custom sandbox workflow action. The action must read a taxonomy field and give me the full path (like id;#value1:value2). Input for this sandbox workflow action is the field value: ...
6
votes
3answers
2k views

Multiple values of RegistrationId attribute in CustomAction tag

I wonder is there any ability to set not only one but multiple values of RegistrationId in CustomAction tag. I have an elements.xml entry like this: <CustomAction ...
1
vote
0answers
236 views

Setting rights for CustomAction. Problem with sandboxed or language?

I've got a CustomAction which contains a button. Only users with high level permissions should be able to see this button, so I tried setting the property Rights ="ManageWeb" on the CustomAction. ...
1
vote
3answers
427 views

Problem creating a Custom Ribbon Action to Order Lists

I attempted to create my first Custom Ribbon action to allow users to sort list items. But I failed miserably. the Action wont show in my ribbon at all and I am having trouble finding out what is ...
1
vote
2answers
2k views

how do i place custom action in custom group on displayform?

By following the examples in the SP 2010 C# Hands On Lab (SPCHOL308), I've gotten a CustomAction button to show up under the View tab in the Manage group on the DisplayForm. I want to place this ...
0
votes
2answers
278 views

Custom Ribbon Button doesn't show on subsites

I've successfully added a custom ribbon button to my site and everything shows up as expected. However, when I go to a sub site, my custom ribbon button doesn't show up. How can I get my button to ...
1
vote
1answer
267 views

Custom ribbon action (office 365)

I've created a custom list and added on that list a custom action in the ribbon. Before I created a calendar view on this list, I could see the button in the ribbon, now I can't. Does anyone know what ...
0
votes
1answer
269 views

How can I bind my ECB-Action to a custom content-type?

I have implemented a custom ECB Action in this way: <CustomAction Id="ConvertListLevel" Location="EditControlBlock" Title="Convert to ListItem" RegistrationType="ContentType" ...
0
votes
1answer
114 views

Custom actions in a Sharepoint Online (BPOS) workflow

Just a simple question: Does anyone know if it's possible to create custom actions for a workflow in Sharepoint Online (BPOS). So NOT Office 365... If possible, are there tutorials you know of how to ...
0
votes
1answer
129 views

Problem in creating custom workflow action in SharePoint [duplicate]

Possible Duplicate: How to deploy a custom SharePoint Workflow Activity I am trying to create a custom Workflow Action for SharePoint Designer 2010. I am using Visual studio 2010 and ...
0
votes
1answer
779 views

Search Results: urls of BDC items suddendly start with bdc3://

I have a scope defined that targets an external content type (exposed through a BDC service). All was working fine until yesterday when the number of results doubled and half the urls start with the ...
2
votes
2answers
2k views

Custom Action with postback (or another approach) - SP 2010

I'm trying to create a custom action that does a postback when clicked. I've followed the following articles with no luck whatsoever: ...