Tagged Questions
A Web Part, also called a Web Widget, is an ASP.NET server control which is added to a Web Part Zone on Web Part Pages by users at run time. The controls enable end users to modify the content, appearance, and behavior of Web pages directly from a browser. It can be put into certain places in a web page by end users, after developing by programmer.
18
votes
8answers
26k views
Add ScriptManager to Page Programmatically?
I am developing a WebPart (it will be used in a SharePoint environment, although it does not use the Object Model) that I want to expose AJAX functionality in. Because of the nature of the ...
8
votes
4answers
11k views
Sharepoint custom web part property does not show up in the toolbox
I have defined a boolean property as follows:
[Browsable(true), Category("Display"), DefaultValue(false),
WebPartStorage(Storage.Shared), FriendlyName("Obey Workflow"),
Description("")]
public ...
8
votes
4answers
2k views
Possible to load a web part inside another?
So, this is what we want to do: We want to have a generic web part with a custom frame around it and then dynamically load other web parts (frameless) inside it. Would this at all be possible you ...
8
votes
3answers
6k views
Sharepoint: Web Part vs. ASP.NET User Control
When creating web parts for Sharepoint, is it better to create an actual web part, or is using and ASP.NET User Control (.ascx) just as good?
I already know how to create the user controls that I ...
8
votes
10answers
18k views
SharePoint error: “Cannot import Web Part”
I have a web part that I've developed, and if I manually install the web part it is fine.
However when I have packaged the web part following the instructions on this web site as a guide:
...
8
votes
5answers
3k views
Best framework for implementing iGoogle or pageflakes (ASP.NET)
For my Enterprise software solution (so open source is not so good) I want to implement a flexible dashboard which is component base. So I can keep changing it by adding new components, withouth ...
7
votes
10answers
2k views
Develop SharePoint web parts in ASP.NET
I have been asked to develop some usercontrols in ASP.NET that will at a later point be pulled into a SharePoint site as web parts. I am new to SharePoint and will not have access to a SharePoint ...
6
votes
2answers
2k views
Override Chrome Type Webpart
I made a Webpart in Sharepoint 2010, and I need that the property "Chrome Type" allways set a "None" value.
I was looking for ways to force the Combobox to "None", or overriding the "Chrome Type" in ...
6
votes
3answers
1k views
Web Part connections in site definitions
I have requirement of specifying web part connections in onet.xml. So when site is created using this site definition the said web parts are already connected and ready to use. Which properties I need ...
6
votes
4answers
7k views
Properly implement a webpart with postback?
What I'm trying to do is to create a webpart that has a textbox where you can set the value of a literal (h2) on the webpart and a "save" button that posts back and then sets the literal accordingly. ...
5
votes
1answer
109 views
Sharepoint project crashes when deploying
I got a lot of projects for Sharepoint which all work fine instead of one. This project can only deployed by one developer of our team, all other devs keep getting an exception when trying to deploy ...
5
votes
2answers
700 views
HTML divs can go outside browser window?
I was playing around with ASP.NET Web Parts which has a "drop down" div. It's all the way to the right of the page. When I click to bring it up, it goes off the window. Usually anything off the ...
5
votes
3answers
527 views
Sharepoint WebParts
Say you have several webparts, one as a controller and several which take information from the controller and act on it. This is fairly easy to model using the Consumer/Producer interface introduced ...
5
votes
4answers
4k views
Is there a reference for the SharePoint XSLT extension functions?
There are a couple of different .NET XSLT functions that I see used in the out of the box SharePoint web parts (RSS Viewer and Data View web part).
<xsl:stylesheet
...
4
votes
1answer
27 views
How can I change the design of the Search Core Result WebPart from SharePoint?
I have a very simple question for good sharepoint developers I think, but at the moment im too blind to see the solution. I'm very pleased about any hint.
What I need to do is to change the design of ...
4
votes
2answers
2k views
How does one get all child terms of a SharePoint term in C#?
I am writing a webpart for SharePoint 2010 that recuperates the latest page of a certain (custom) type, according to publishing date. It only takes into account pages tagged with a specified term. I ...
4
votes
3answers
2k views
How do I make a webpart's settings configurable in Sharepoint?
I am using SharePoint Server 2007 Enterprise with Windows Server 2008 Enterprise. I am publishing a portal template.
I want to develop a WebPart and make some settings configurable (just like we ...
4
votes
2answers
520 views
Sharepoint web part for editing list items
I'm trying to create a web part that will enable users to edit items without ever leaving the AllItems.aspx page. The web part should have a similar functionality like the EditForm.aspx page.
I've ...
4
votes
1answer
1k views
Web part dll in Gac or bin using sharepoint 2007
What is best practice, in sharepoint 2007 web part deployment. Deploying the dll's to GAC or bin?
4
votes
5answers
2k views
laying out a form using c# for a webpart in sharepoint
I have created a webpart in c# for sharepoint.
its basically a form with text boxes, literals, validators and buttons.
im not sure how to render this form to make it look pretty.
The layout etc is ...
4
votes
4answers
6k views
How to programmatically update content in a SharePoint Web Part?
Does anybody know how to programmatically update the content of any of the standard SharePoint v3 Web Parts?
As an example, put a Link Summary Web Part on a page. Add some links to it. Now, how can ...
4
votes
5answers
531 views
What's your experience with using ASP.NET 2.0 webparts?
I would like to know your experience with ASP.NET webparts as a reusable component in your website.
How useful did you find it? Did you find any serious issues with it? Would you recommend it using ...
4
votes
3answers
649 views
Are ASP.NET Web Parts a viable technology for implementing a portal architecture
Web parts seem to be used extensively in Sharepoint related development, but examples of using them in asp.net webforms applications are few and far between. I'm implementing a domain specific portal ...
4
votes
7answers
13k views
Displaying the current authenticated Sharepoint user from an asp.net Page Viewer Web Part
I am creating a standalone asp.net page that needs to be embedded into a sharepoint site using the Page Viewer Web Part. The asp.net page is published to the same server on a different port, giving ...
3
votes
2answers
332 views
Webpart “Not registered as safe” after changing AssemblyVersion
I (successfully) deployed some sharepoint2010 - Webparts using msbuild. Everything works fine until I decided to change the assemblyVersion. Whenever I do that the message
Web Part Error: A Web ...
3
votes
1answer
83 views
How to add a webpart to a listview in sharepoint 2010?
I have to add a "Content Editor" web part to a list view. The "Content Editor" is required to implement some java script and a html textbox.
The problem is that after adding the web part to the list ...
3
votes
1answer
499 views
SharePoint: Multiple webparts and ribbon
I am associating ribbon to my webpart. I have a need to add more than two webparts in a page.
I do not want to have a separate contextual group/tab for each webpart. Is there a way to check if a ...
3
votes
1answer
155 views
modular programming in ASP.net
I don't know whether usage of the term 'modular programming' as the topic title is correct or not.
I'm developing a website application which consist of different parts such as:
Registering ...
3
votes
2answers
521 views
WebPart RenderControl doesn't render contents
I have a custom web part that I am trying to call the RenderContents method on, but the results only contains the surrounding div for the web part, and not any child controls.
Take for example this ...
3
votes
2answers
863 views
Getting a random UserProfile In SharePoint 2010
I am trying to retrieve a random number of users from the UserProfileManager.
But I am encountering errors when deploying to the live servers. I can't seem to see what is causing the error. My code ...
3
votes
1answer
2k views
How to get all document libraries BUT Form Templates, Style, Customized Reports
I'm building a webpart for SharePoint 2010 to get all the document libraries with usefull info for the user. This means, docs that users uploaded, etc. I don't want to show libraries such as Form ...
3
votes
3answers
3k views
jQuery $(document).ready() not firing
Using jQuery 1.4.2 from Google hosted Code.
Is there a reason why the following javascript does not fire all 3 document.ready functions when the document is ready?
The first $(document).ready() ...
3
votes
1answer
1k views
Develop a custom editable Visual Web Part (WebPart) for SharePoint 2010
I want to develop a webpart that allows editors to amend its content using Sharepoint's Ribbon-based formatting controls, and then display that content in a nicely formatted way. The built-in content ...
3
votes
3answers
965 views
ITransformableFilterValues interface with two or more parameters [SharePoint WebParts]
I working with Sharepoint, and I try to connect web-parts with multiple parameters.
My question is how do I pass more than one parameter from a custome web part to another.
I am able to pass one ...
3
votes
2answers
3k views
How to Create a custom Application Page with webparts for sharepoint in VS2010?
I am very new to Sharepoint, and I am not 100% sure if this is the correct way to do this but here it goes. I have a very bare master page that I want to have a custom application page load up in. On ...
3
votes
2answers
585 views
Error Code: 3604 when deleting file from SharePoint Document Library
I'm developing a WebPart in SharePoint 2007 and sometimes when I try to delete a file from Document Library with code like this:
SPWeb web = SPControl.GetContextWeb(WebPart.WebPartContext);
SPList ...
3
votes
1answer
665 views
My webpart event handling does not fire in SharePoint
please help me. I started coding something complicated and then realized my event handlers don't work.. so i super simplified a button with an eventhandler... please see the code below and maybe you ...
3
votes
1answer
164 views
How can I write webparts that are as lightweight as the one by Google or Yahoo
I have been writing webparts for a while and have written couple of portals too but I feel that the portal pages and webparts that I write using .net framework are much more heavy and browser ...
3
votes
3answers
954 views
Popularity of MVP for SharePoint WebParts
Is it a popular techinque to use the Model View Presenter (MVP) design pattern when creating Web Parts for SharePoint? It seems (to me) that this pattern is applied more often in the custom ...
3
votes
2answers
922 views
Converting a JSP to a SharePoint webpart
We have a large number of Java based servlets/portlets running in a BEA portal that we want to convert into SharePoint 2007 webparts. Many of the portlets use user preferences but the implementations ...
3
votes
2answers
522 views
Web Parts and Offering Files For Download?
Can anyone suggest the best way to offer a file for download within a SharePoint web part? The file will be dynamically created on request, but I still need to end up with the standard page being ...
3
votes
7answers
6k views
sharepoint: Using a Content Editor Web Part this error occurred:“Cannot retrieve properties at this time.”
I have a content editor web part. Whenever I edit the content and then click save, the following errors occurred:
"Cannot retrieve properties at this time."
"Cannot save your changes"
How do you ...
3
votes
4answers
17k views
How to use jquery correctly in SharePoint Web Part - jquery doesn't always fire
I'm learning how to use jquery with SharePoint. My example draws a red box inside the Content Editor Web Part when a link is selected. My code works when the SharePoint page is in edit mode but not ...
3
votes
4answers
3k views
Adding a required field validator to a SharePoint webpart
I am writing a webpart for MOSS 2007. I need to validate a text field in that webpart, or which I am using th required field validator.
I am creating the required field validator as follows:
...
3
votes
4answers
3k views
SharePoint Webpart deserialize error
I am getting a random web part error, it works one refresh and then not the next:
Web Part Error: One of the properties of the web part has an
incorrect format. Windows SharePoint
services ...
3
votes
1answer
2k views
Sharepoint default list item detail view
I have a webpart that renders random list items (from any list and list type) in a specified format. I want the items that are being displayed in the webpart to link to their ListItem detail views. ...
3
votes
1answer
867 views
What are some good techniques for performance testing SharePoint web parts and controls?
This is a question about performance testing specific to SharePoint web parts and controls (although standard ASP.NET methods would be applicable as well). I'm wondering what are some good techniques, ...
3
votes
4answers
9k views
How to create a dashboard user interface using ASP.NET MVC?
I am currently building an application using ASP.NET MVC. The data entry pages are fairly easy to code, I just make the Model for the page of the type of my business object:
namespace ...
3
votes
3answers
7k views
How to add a web part page to a site definition?
I have to create a site definition for a client that must contain pre-defined web part pages. I can create the web part pages but am at a loss when it comes to attaching them to the site on creation.
...
3
votes
4answers
970 views
Good articles for Sharepoint Web Part creation?
Does anyone know of any good basic articles for creating Sharepoint Web Parts.
I have found a couple, but most of them jumped in a little quick.
Thanks.