0
votes
0answers
19 views

SharePoint event listener not triggered

I'm having trouble triggering a custom event receiver. I have a list which has custom event receivers binded to it e.g. ItemUpdated, ItemAdded. When I add an item to that list via the SharePoint UI, ...
0
votes
1answer
30 views

Validation (ASP.Net): Attribute 'DisplayTitle' is not a valid attribute of element 'WebPartZone'

I have a SharePoint WebPartZone declared on an ASP.NET page. This is not the same as the <asp:WebPartZone/> control. <%@ Register TagPrefix="WebPartPages" ...
0
votes
0answers
21 views

403 Forbidden Sharepoint and Visual Studio

I have created a simple claims based SharePoint site, and when trying to add a service reference from Visual studio, it gives the error "_vti_bin/authentication.asmx'. The request failed with HTTP ...
0
votes
1answer
75 views

Populating a GridView table in VS2012 as webpart with SPList Only Title column has value

I am trying to populate a gridview table with a list from a SP2010 website as a webpart to be used on a different SP site. So far the code I have is: SPSite mySite = new SPSite("Sharepoint list ...
0
votes
0answers
50 views

Construct an array or list to hold SharePoint List data in a Visual Studio 2010 Workflow for SharePoint 2010

My specific problem at present is how to declare and construct an array inside the workflow environment. As such my code container requires my code to be contained in these headers: private void ...
0
votes
2answers
68 views

sharepoint book for beginners from very scratch [closed]

Can anyone please refer me a good book to study sharepoint as I am pretty new to this. I am quite familier with the language c#
0
votes
0answers
52 views

SharePoint 2013 pop up window not displayed correctly

a pop up window is supposed to open on a button click. but this pop up appears distorted with half its content being hidden. solution was developed in VS 2010, and deployed to a 2013 environment. ...
1
vote
2answers
155 views

SharePoint CAML query works in builder but not in code

I have a query that is working when using any CAML query builder, when in using it in c# for a SharePoint web part, it always returns no results. using (SPWeb ThisWeb = ThisSite.OpenWeb()) { ...
0
votes
0answers
86 views

Prevent TreeView from scrolling page down to selected node

I have a TreeView (in UserControl that is placed on SharePoint site) with lots of nodes. After user clicks on any of these nodes PostBack is called and page reloads to the same position (vertically). ...
2
votes
5answers
529 views

SharePoint development in visual studio without having to deploy/debug on every code changes

I'm using VS2010 connected to a local SP2010 installation, I edit the code in VS2010 (i.e. of a WebPart) and then in order to see the result on a browser I deploy the solution. This is very annoying ...
0
votes
1answer
303 views

Custom code-behind forms for content type in sharepoint 2010

I need to create custom content type derived from TASK content type in SharePoint 2010. The main point here is that I want my custom aspx edit and view forms with code behind to be opened when user ...
0
votes
2answers
139 views

Event receiver in console application

I have created a console application in which I have defined ItemAdded event receiver method. I wanted to know how to execute the ItemAdded method, do I need to call this method inside the Main ...
-2
votes
2answers
88 views

How to add a wiki page through ItemAdded event receiver coding on the addition of a new item in a list? [closed]

I have a list named 'List1' in which I have 'title ' and 'WikiLink' columns. I want to add a wiki page on the addition of a new item using ItemAdded event receiver code and update the link on ...
0
votes
0answers
32 views

Creation and dynamically applying Sharepoint 2010 themes

It is possible to dynamically change colors through Visual Studio but not the background image. I need to apply themes dynamically like if today's date > 15dec && today's date <30 dec ...
0
votes
2answers
246 views

sharepoint 2010 infopath custom code button hidden

I've been giving a really fun task at work, I need to create a SharePoint app or some sort of list on sharepoint, where someone can nominee people from the company to win some sort of recognition ...
0
votes
1answer
539 views

Creating document library through visual studio for SharePoint 2013

I am trying to create document library using C# in visual studio for SharePoint 2013. But on running my application I am getting this error "Microsoft SharePoint is not supported in 32-bit process. ...
0
votes
1answer
1k views

How to update one list from another using ItemUpdated event receiver in SharePoint?

I am quite new to SharePoint and have been working on this thing for a couple of days. I was able to somehow use ItemAdded event receiver but I want if I update List 1 then using ItemUpdated event ...
1
vote
0answers
60 views

VS 2010 - Missing project templates ( vsInstallTemplates not found )

SharePoint project templates are not showing up in our VS 2010 installed on the server (SP is already installed & running in that machine). After researching a little bit, I've copied the ...
0
votes
2answers
88 views

Creating webparts in visual studio

i have visual studio 2008 standard .i have MS Sharepoint desighner 2007.Do i need any other software for creating webparts.I dont know how to proceed.Please help
0
votes
2answers
112 views

Programatically unpublish a document in Doc Library in Visual Studio in SharePoint 2010

I'm copying a document from one doc library to another library as a New Version. It's working fine and Publishing the copied document in the destination library. Is there a way to either copy it ...
0
votes
3answers
205 views

Any() not working when querying a SharePoint list

I'm trying to query a Sharepoint list to find whether the username exists in the list or not. I'm using LINQ in this. Code which I tried: SPList l = web.Lists["Acknowledgements"]; var ...
1
vote
2answers
398 views

How to make a timer job run only once?

I've written a code to run a timer job which runs at the start of a month informing users by email to visit the site. Here's the code of the execute method: public override void Execute(Guid ...
0
votes
1answer
1k views

How to stop a modal dialog popup from showing in sharepoint code behind

I have created a Modal Dialog Popup in jQuery/javascript in a Visual Web Part which shows every time the page loads. There is a submit button in the popup and when it is clicked, I store the username ...
1
vote
0answers
30 views

No Access message displayed in red after uploading the webpart

I need to make changes to the control templates in the webpart. So, I took the webpart code from prod to my dev machine and built a test site. I have uploaded the webpart on to the test site and "No ...
1
vote
0answers
62 views

Giving error while drag and drop the custom control from the toolbox

I created one server control(Custom control). I want to use it in my sharepoint project. I just added that custom control dll to the tool box by right click on the toolbox and add item. Now I just ...
1
vote
1answer
211 views

SharePoint Visual Studio Build - error : '.', hexadecimal value 0x00

When I deploy my SharePoint project I receive the following error: C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\SharePointTools\Microsoft.VisualStudio.SharePoint.targets(375,5): error ...
0
votes
0answers
206 views

Issues with while activity while working on sequential workflow using visual studio 2010

Am working on sequential work flow using visual studio 2010. An office task has been defined in while loop.After while loop I defined an IfElse activity in which I defined an other while activity. Am ...
1
vote
3answers
831 views

When is Sandboxed Solutions preferred in Sharepoint?

I have been referring to many articles that show comparison between SharePoint Sandboxed Solutions and Farm Solutions plus demos of Visual Web Part (Farm based) and Web Part (Sandboxed Solutions) ...
0
votes
2answers
801 views

SharePoint list items into data table

I would like to load a SharePoint list items into a data table. SPWeb oWebsite = SPContext.Current.Web; SPList oList = oWebsite.Lists["List_Name"]; SPListItemCollection collListItems = oList.Items; ...
0
votes
1answer
252 views

Images/Imagebuttons in SharePoint sandboxed Webpart

New to developing for Sharepoint Online but I'm familiar with how to deploy/package web parts to both local Sharepoint and Sharepoint Online. Trying to create a basic webpart that contains numerous ...
0
votes
2answers
61 views

Sharepoint 2010 : error details for built-in activities

I try to make a short simple workflow in Visual Studio 2010 with a CopyItemActivity. When I run the workflow, I get a "Error occured" status. I think I put a bad parameter... but without any detail, ...
0
votes
1answer
125 views

Error when trying to validate sharepoint site or deploy solution

I set up my windows 7 machine to have sharepoint 2010 running on it, after a lot of struggling, I managed to make it work, but every time I create a new webpart and validate it or try to deploy a ...
0
votes
0answers
100 views

'TranslatorTool.Translator.TranslatorUserControl' is not allowed here because it does not extend class 'System.Web.UI.UserControl'.

I'm trying to use MS Translate for a Sharepoint web part, using the sample codes for C# from http://msdn.microsoft.com/en-us/library/ff512421.aspx. I bumped into this problem: ...
-3
votes
1answer
387 views

List Definition and List Instance: which should be used when?

I am working on VS 2010 for creating List Instances and List Definitions of SharePoint but I am not getting to know which one is to be used when? And basically what differentiates the two?
0
votes
2answers
2k views

How to create SharePoint 2010's site column through Visual Studio 2010?

I was trying to create lists, content type and site columns through Visual Studio 2010. There were options of adding content type and list instance but not of content type. So, I could not figure out ...
0
votes
1answer
480 views

Change webpart name

I have developed and deploy a webpart into SP2010. I would like make some changes to the webpart and show it to my clients but I need to keep the original webpart in case they dont like the new ...
3
votes
1answer
2k views

SharePoint 2010 development without local server installation

I'd like to develop SharePoint 2010 web parts without local SharePoint installation. I mean I don't want to install SharePoint server because I don't need it and it's so huge. I found some questions ...
1
vote
1answer
416 views

SPFieldType of a yes/no (check box) column in a sharepoint list

I want to know if I added a yes/no (check box) column to my list in my sharepoint website and then let's say in visual studio I wanted to retrieve data from this column what is the equivalent ...
0
votes
1answer
338 views

Sharepoint 2010: create a lookup column that refers to files of a specific content type in a document library

I need to create a lookup column in sharepoint 2010 that refers to files of a specified content type. Files are all resident in a document library organized as folder. More precisely: I've the ...
4
votes
1answer
318 views

HtmlAgilityPack - File Not found

I'm developing a C# ASP .NET WebPart in SharePoint Foundation. Everything works fine, now I want to Parse a HTML Page to get all ImagePaths and save the Images on HD/Temp. To do that I was ...
0
votes
2answers
510 views

Visual Studio 2010 not deploying XSL file to SharePoint 2010

So I have a SharePoint 2010 project in Visual Studio 2010 and I have defined a fldtypes_*.xsl file. I put the file into a mapped directory /Template/Layouts/XSL, however, when I deploy the ...
1
vote
0answers
259 views

Add Nintex WorkFlow 2010 action in Visual Studio 2010?

How to Add Nintex WorkFlow 2010 action in Visual Studio 2010 for creating custom workflow?It searching for Online.But except Nintex WorkFlow 2010 action others are getting. Or want to create manually ...
0
votes
2answers
66 views

Build,Package, Deploy and Attach to all sharpeoint processes with one keystroke?

I would like to know if its possible with visual studio or anyother extension to customize it to do Build Package Deploy (wait for iis processes to restart) attach to all sharpeoint processes. I ...
1
vote
0answers
260 views

How to add SharePoint as a data source when creating a web part?

I have created a web part in VS 2010 using the web part template. Now I am trying to add my sharepoint server as a data source for some controls but SharePoint does NOT show up in the Data Source ...
0
votes
0answers
307 views

How to use the CreateTaskWithContentType Activity in SharePoint SequentialWorkflowActivity?

Need sample for Task-related activity based on SharePoint SequentialWorkflowActivity Maybe someone has usefull samples? task-ralated activity ONLY FOR using in SharePoint Designer!!! sequence ...
0
votes
1answer
302 views

Sharepoint workflow deployment error basepackagepath

I'm getting this error while deploying a workflow in sharepoint 2010 Error occurred in deployment step 'Retract Solution': This required project property is not found or has a value of null or empty ...
-2
votes
1answer
43 views

Does read_only permission allow file modifications using TFS?

I gave an account the read_only permission through team project portal, so the account can read the share document through web access, but can't modify the files. However, when the account is logged ...
0
votes
2answers
3k views

Create a custom column( hyperlink type) in sharepoint 2010 using Visual Studio 2010

I want to create a custom column in Sharepoint 2010 using VS 2010. When user click on this hyperlink it should open in modal popup. Please guide me. How can I achive this?
0
votes
0answers
69 views

sharepoint 2010 - how to determine which node was clicked in tree view in webpart

I made a tree view in a visual webpart in SP 2010 using VS 2010, how can I determine which node was clicked? Note: the tree view is built dynamically from a document library. Thanks.
0
votes
1answer
558 views

sharepoint 2010 how to create a webpart with a treeview?

I have sharepoint 2010 and visual studio 2010. I want to create a webpart that will contain a tree view and it will show all files from a list or library (the path should be configurable in the web ...

1 2 3 4
15 30 50 per page