A ribbon is an interface where a set of toolbars that are placed on tabs in a tab bar.
0
votes
1answer
51 views
Adding new menu items for different document types
How can I add new menu items to New Item menu of document libraries? I want to add "New Powerpoint File" option to the menu so that users create PowerPoint documents just like they create Word files.
...
3
votes
2answers
189 views
Ribbon menu icon statistics
Is it possible to measure somehow how often users hit concrete icon in ribbon menu? Or which one is most used and which one the least?
I have strange task, I must defend some particular icons in ...
0
votes
1answer
289 views
Remove the ribbon on add new item
On the "Add new item" option on a list, the new form page has a ribbon attached:
I want to edit this page into a custom one with more different types of "Save" buttons.
Before I start cranking at ...
0
votes
1answer
101 views
Multiple Line of Text Columns, I am not able to do any formatting while using it with Publishing Layout Pages
I'm wondering if Multiple Line of Text Columns works with Publishing Layouts for Publishing Site or not? The problem is while adding them to a publishing layout page (either column set to be RichText ...
2
votes
1answer
104 views
Check if customAction exists
I customized my ribbon with customactions. These commands of the customactions call some cool Javascript functions from a file (ex. script.js).
I include this file with:
<CustomAction
...
1
vote
1answer
2k views
How to add a button at Page tab ribbon at publishing page?
Can you please help me in order to add a button at Page tab in publishing page. I am able to add the button in the documents library but I am not able to add the button at Page tab.
Here is the XML ...
2
votes
1answer
354 views
Show Ribbon on every page?
I have done a custom tab and need to display it on every single page. But how? Ive tried with a delegate or feature control that adds an addition pageheader that runs some code getting the current ...
0
votes
1answer
217 views
Custom List Definitions - Remove the standard create item menu option
I'm creating a custom list definition in SharePoint 2010 by following this article.
It works well but I need to remove the default create list item option and only keep that for Bug Item.
How can ...
2
votes
3answers
3k views
Show Ribbon always to Visitors
Is there any way to show Ribbon for visitors, in all pages, by default?
Normal Page View for Visitors: (No Ribbon)
Normal Page for Editors:
I am looking for a solution to display the ribbon for ...
4
votes
2answers
1k views
Attach a Javascript function to an OOTB ribbon button
I want to attach a custom javascript function to the out of the box "Download a copy" ribbon button. This is to provide analytics for file downloads done through the ribbon button.
I tried this ...
1
vote
1answer
704 views
Ribbon button - Move selected items into Document Set
How do I create a button on the ribbon and how do I move the selected item(s) from the list/library into a Document Set?
1
vote
1answer
112 views
How to take screen shot of sharepoint site programmically
Currently i have created a custom button in my sharepoint ribbon bar and i need a code for taking screen shot of the page when the custom button is clicked. since there is login credential i cannot ...
1
vote
1answer
427 views
hide ribbon menu for workflow
I want to hide the workflow button: Ribbon.List.Settings.ManageWorkflows
Which scope should the feature have (web or site)?
Now I try:
<HideCustomAction Id="RemoveRibbonButton"
...
2
votes
1answer
500 views
Why are some tabs doubling-up and my custom contextual tab not showing?
When I deploy this ribbon customization, I get the contextual out-of-the-box tab for calendars doubled (Events Calendar Events Calendar) and the custom one never shows.
I have this code:
...
2
votes
1answer
629 views
Custom ribbon tab contents don't appear
Here is my custom ribbon tab definition:
<CustomAction
Id="CustomRibbonTab"
Location="CommandUI.Ribbon">
<CommandUIExtension>
...
4
votes
1answer
357 views
Custom ribbon tab on all pages
I want to create my own Ribbon Tab that will appear on all kinds of pages. What should I do to register this CustomAction? There is not a location setting for this.
1
vote
1answer
1k views
SharePoint 2010 Ribbon on Application pages
I'm trying to create a SharePoint 2010 application page (AKA layout page) to display some information and allow users to perform some custom functionality.
I need to display custom ribbon tab for the ...
0
votes
1answer
210 views
Is it possible to call any standard ribbon action from .NET?
We are building an ASP.NET MVC UI to sit on top of SharePoint 2010.
One of the questions that has cropped up is how difficult/easy it will be to re-create buttons to do standard SharePoint 2010 ...
3
votes
3answers
4k views
Sharepoint 2010: Custom “New Item” form - showing ribbon and binding events to ribbon buttons
We've created a custom New Item page for our list on our site in Sharepoint 2010 with this code:
<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
<table ...
0
votes
2answers
203 views
deploying custom feature in sharepoint 2010
I have created a custom feature for adding a button in the SharePoint 2010 ribbon. If I click that button, I can open a show model dialog box which I have loaded a aspx file that contains file upload ...
0
votes
1answer
1k views
SharePoint 2010 - enable custom ribbon button only if user has permission to edit selected item
I have a custom action in a ribbon, and I need to enable the button only if current user has permission to edit the item (Contribute role). The action is defined in a document library, the way it ...
1
vote
3answers
1k views
Enabling a Button on the Ribbon Based on Selection
How can I change EnabledScript asynchronously? I need this, because EnabledScript depended in my case on some item fields, but I can read them only in async way:
var itemId = ...
0
votes
1answer
264 views
Asynchronous postbacks from ribbon controls
I am customizing the ribbon for my share point site to include tabs,controls that are relevant to my application.
I am performing the customization by getting hold of an instance of SPRibbon on a ...
2
votes
1answer
1k views
Hide 'Connect To Outlook' button from Calendar Tab Ribbon (SharePoint 2010)
How can I, via a feature, hide the 'Connect To Outlook' button from the 'Connect & Export' group in the 'Calendar' tab when I view a calendar on a SharePoint 2010 site?
I have tried several ...
1
vote
1answer
284 views
Is there a way to nest buttons on a custom ribbon split button or flyout?
Is there a way to nest controls/buttons under a ribbon split button or flyout?
I have a problem where I need to give some hierarchical representation to the menu items.
For example:
[category 1]
...
1
vote
1answer
353 views
Adding functionality to Ribbon
In SharePoint 2010 when adding a link to a site/page I am able to set a number of properties. I'd like to be able to add a "no-follow" attribute so that users can easily select whether the link ...
5
votes
2answers
3k views
How to disable a ribbon button when a folder is selected
I have added a new button to the SharePoint ribbon for document libraries. This all works well and the button is enabled / disabled depending on the number of items selected... fine!
I want to ...
0
votes
0answers
214 views
How to add a “Actions List” in a Sharepoint Pop Up?
I have a PopUp opened by
SP.UI.ModalDialog.showModalDialog
that contains a form, and I want it has some actions like a normal edit pop up (View Snapshot).
The pop ups content comes from a ...
2
votes
0answers
308 views
How do I get the full folder path of a selected list via the Ribbon and Client Side Script? [closed]
What I want to achieve is something similar to this OOB method:
SP.ListOperation.Selection.getSelectedList()
But this method only returns the GUID of the selected list. I would like to get the ...
1
vote
1answer
2k views
Removing “Edit Item” from calendar ribbon in sharepoint 2010
I am facing trouble removing the "Edit Item" ribbon button from calendar DispForm.aspx.
I have created a visual studio 2010 user control where i used the method ...
1
vote
2answers
1k views
Custom SharePoint 2010 ribbon button based on Insert Link
I'm in the process of implementing a custom tab, group and button for the SharePoint 2010 ribbon. The button is to behave almost identically to the standard Editing Tools>Insert>Link button, except ...
0
votes
2answers
2k views
How to enable localization for Custom Action on Ribbon?
I need to make my custom solution for SharePoint 2010 multilingual, I have a Elements.xml file where all my ribbons controls are described but how can in reference to .resx from there and how can i be ...
2
votes
2answers
314 views
Showing SharePoint ribbon tabs to anonymous users
I've asked this on other forums and gotten nowhere so I'm hoping you can help. I've created some custom ribbon tabs with buttons for site navigation. My issue is that although the ribbon buttons work ...
1
vote
2answers
226 views
Where is the location of custom GroupTemplate?
I am in the process creating the webpart associated ribbon following the example. http://msdn.microsoft.com/en-us/library/gg552606.aspx
I would like to create my own GroupTemplate. However it seams I ...
1
vote
2answers
755 views
How do I modify the ribbon for a Welcome Page or Page content type?
I'd like to add some custom actions for the pages on our site.
These pages all have use the Page or Welcome Page Content Type.
Thanks.
1
vote
1answer
328 views
Sharepoint 2010 only displaying an item in the ribbon if using IE
I am using some JavaScript that can only be used in IE. Is there a way to hide my custom ribbon button if not in IE? Or only display it if it is IE.
4
votes
1answer
498 views
Problems with customizing Ribbon for webparts with “Summary Toolbar”
I have a problem with customizing Ribbon for webparts with "Summary Toolbar". I add the button through CAML code. (Generated by SPSF, but shouldn't matter)
My buttons shows up when viewing the list ...
1
vote
1answer
448 views
Infopath Browser form Ribbon modification
How we can customize sharepoint 2010 form server ribbon buttons? I found 'Ribbon.Tabs.InfoPathHomeTab' in page source but it seems that we can't add ribbon button to this location
1
vote
2answers
997 views
Remove Attach file button from Ribbon
Can anyone offer advice please as to how i can remove the 'attach file' menu button form the ribbon only on a specific library?
It is on the default new + edit forms that are loaded ... It needs to ...
1
vote
2answers
140 views
Custom actions migration from SP 2007 to 2010
I have custom action defined in my SharePoint 2007 feature. It adds new item to document library menu.
<CustomAction Id="UserInterfaceLightUp.MobiusDiscretionaryArchivingLibMenu"
...
1
vote
3answers
1k views
Hide OOTB Markup Styles in SharePoint 2010
How do you hide out-of-the-box entries from the Markup Styles definitions in the rich text editor in the ribbon in SharePoint 2010?
I know how to add new entries using CSS, but not how to hide the ...
0
votes
2answers
1k views
SharePoint 2010 ribbons disappears when customizing EditForm.aspx
When opening/editing a list item, the default ribbons (delete, version history, etc) appear at the top.
However when I customize the EditForm.aspx and replace the default webpart with custom content, ...
3
votes
3answers
1k views
Is it possible to launch local application (exe) from Ribbon control?
I would like to launch an exe from the users local system (assuming the exe exists locally) from a SharePoint ribbon control. Is this something that is possible to do? If it is, how do I do this. If I ...
1
vote
3answers
213 views
Place a Ribbon on a Root Site
I have created a Ribbon following an example. However, the only examples I can find place the Ribbon on a document list. I suspect that a change is needed here:
Location="CommandUI.Ribbon"
...
0
votes
1answer
371 views
Unable to add button to a custom list
I'm trying to add button to a custom list. It seems impossible to me, below is my button definition from elements.xml
<CustomAction Id="CopyTasksButton2" Location="CommandUI.Ribbon"
...
4
votes
2answers
800 views
Adding a ribbon button using the object model
I'm trying to register a custom action on a site collection that adds a button to the SharePoint ribbon. I want to do this using the object model and not declaratively in XML. Does anyone know of this ...
1
vote
1answer
747 views
New markup style in ribbon
I'm able to add a markup style to ribbon by creating a new class like div.ms-rteElement-mkg-div { -ms-name: "New markup"; }
This works well, but what if I want to add a new class, and maybe insert a ...

