active questions tagged web-parts - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T11:47:59Zhttp://stackoverflow.com/feeds/tag/web-partshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/419632/possible-to-load-a-web-part-inside-another3Possible to load a web part inside another?noocyte2009-01-07T08:52:57Z2009-11-26T11:38:36Z
<p>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 think? A bit like <a href="http://www.codeplex.com/smartpart" rel="nofollow">Jan Tielens SmartPart</a>, only not for ASP.Net User Controls, but for other Web parts... ;)</p>
<p>Edit: We've been able to do this now. The solution was actually pretty simple. Check out the code:</p>
<pre><code>public class WebPartWrapper : System.Web.UI.WebControls.WebParts.WebPart {
protected override void CreateChildControls() {
Panel pnl = new Panel();
this.Controls.Add(pnl);
WebPart dynamicPart = WebPartFactory.CreateWebPart("RSSViewer");
pnl.Controls.Add(dynamicPart);
}
}
</code></pre>
<p>Easy as that... We also use reflection to store the webparts as Xml etc., but that's beside the point.</p>
http://stackoverflow.com/questions/120928/sharepoint-error-cannot-import-web-part5SharePoint error: "Cannot import Web Part"DavidK2008-09-23T13:20:59Z2009-11-08T08:37:31Z
<p>I have a web part that I've developed, and if I manually install the web part it is fine.</p>
<p>However when I have packaged the web part following the instructions on this web site as a guide:
<a href="http://www.theartofsharepoint.com/2007/05/how-to-build-solution-pack-wsp.html" rel="nofollow">http://www.theartofsharepoint.com/2007/05/how-to-build-solution-pack-wsp.html</a></p>
<p>I get this error in the log files:</p>
<pre><code>09/23/2008 14:13:03.67 w3wp.exe (0x1B5C) 0x1534 Windows SharePoint Services Web Parts 8l4d Monitorable Error importing WebPart. Cannot import Project Filter.
09/23/2008 14:13:03.67 w3wp.exe (0x1B5C) 0x1534 Windows SharePoint Services Web Parts 89ku High Failed to add webpart http%253A%252F%252Fuk64p12%252FPWA%252F%255Fcatalogs%252Fwp%252FProjectFilter%252Ewebpart;Project%2520Filter. Exception Microsoft.SharePoint.WebPartPages.WebPartPageUserException: Cannot import Project Filter. at Microsoft.SharePoint.WebPartPages.WebPartImporter.CreateWebPart(Boolean clearConnections) at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, Uri webPartPageUri, SPWeb spWeb) at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, SPWeb spWeb) at Microsoft.SharePoint.WebPartPages.WebPartQuickAdd.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(...
09/23/2008 14:13:03.67* w3wp.exe (0x1B5C) 0x1534 Windows SharePoint Services Web Parts 89ku High ...String eventArgument)
</code></pre>
<p>The pertinent bit is:</p>
<pre><code>http%253A%252F%252Fuk64p12%252FPWA%252F%255Fcatalogs%252Fwp%252FProjectFilter%252Ewebpart;Project%2520Filter.
Exception Microsoft.SharePoint.WebPartPages.WebPartPageUserException: Cannot import Project Filter.
at Microsoft.SharePoint.WebPartPages.WebPartImporter.CreateWebPart(Boolean clearConnections)
at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, Uri webPartPageUri, SPWeb spWeb)
at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, SPWeb spWeb)
at Microsoft.SharePoint.WebPartPages.WebPartQuickAdd.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
</code></pre>
<p>And that's accompanied by a rather terse error message: "Cannot import web part".</p>
<p>I have checked and my .dll is registered as safe, it is in the GAC, the feature is activated, and the web parts appear in the web part library with all of the correct properties showing that the webpart files were read successfully.</p>
<p>Everything appears to be in place, yet I get that error and little explanation from SharePoint of how to resolve it.</p>
<p>Any help finding a solution is appreciated.</p>
http://stackoverflow.com/questions/621809/sharepoint-do-not-see-any-filter-web-parts1SharePoint: Do not see any Filter Web PartsOtpi2009-03-07T13:03:14Z2009-09-29T23:28:04Z
<p>Hi,</p>
<p>In the official Office 2007 site there are numerous reference to Filter Web Parts.
When I try to add one of them, the Web Part list in my Sharepoint doesn't show any Filter Web Parts.</p>
<p>Please post if anyone experienced the same and any resolution.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/293832/how-to-create-a-dashboard-user-interface-using-asp-net-mvc1How to create a dashboard user interface using ASP.NET MVC?mattruma2008-11-16T12:50:08Z2009-09-23T06:49:57Z
<p>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:</p>
<pre><code>namespace MyNameSpace.Web.Views.ProjectEdit
{
public partial class MyView : ViewPage<Project>
{
}
}
</code></pre>
<p>Where I am struggling is figuring out the best way to implement a dashboard like interface, with stand-alone parts, using ASP.NET MVC, where the Model for each part would be different? I'm <strong>assuming</strong> that each part would be an MVC user control. </p>
<p>Also, how could I make it so each part is testable?</p>
http://stackoverflow.com/questions/1384713/how-to-display-xml-returned-by-sharepoint-for-web-parts0How to display XML returned by SharePoint for web parts?Chris Stewart2009-09-06T02:08:53Z2009-09-07T12:15:54Z
<p>Lately I've been doing a lot of custom styling in SharePoint by modifying the XSL used to display various web parts. Knowing what the actual XML looks like, including which elements have actual values, really helps when working in the XSL. I've discovered a way to show this XML when using Ontolica web parts, but not when I'm using the default web parts included with SharePoint.</p>
<p>So, is there a way to do this, either programmatically or simply by adding a parameter to the URL? I could really use a tool like this and would be interested in developing one as OSS if I could determine if it's possible.</p>
http://stackoverflow.com/questions/1372963/dynamic-web-parts-creation0Dynamic web parts creationAravind.S2009-09-03T11:52:56Z2009-09-03T11:54:46Z
<p>Hello,</p>
<p>I have a dropdown tat contains values for the webparts to be added. I have a button called select. When a user clicks that button, the value from dropdown must be taken and a web part must me created and and put into a web part zone at a different div. Can anyone help out in this issue? </p>
http://stackoverflow.com/questions/315490/what-are-some-good-techniques-for-performance-testing-sharepoint-web-parts-and-co3What are some good techniques for performance testing SharePoint web parts and controls?Alex Angas2008-11-24T21:14:04Z2009-09-02T13:40:45Z
<p>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, considering factors such as:</p>
<ul>
<li>caching (what and when should you cache?)</li>
<li>load balanced servers (storing state)</li>
<li>interaction with other parts of the page (e.g. multiple JavaScript execution)</li>
<li>measuring CPU usage for a particular control</li>
<li>rendered page size</li>
</ul>
http://stackoverflow.com/questions/119060/can-i-make-a-sharepoint-image-web-part-clickable-to-link-to-another-page1Can I make a SharePoint Image Web Part clickable to link to another pagebrantcarter2008-09-23T04:05:33Z2009-07-03T11:19:38Z
<p>The Image Web Part doesn't seem to have an href attribute that I can set. Is there something I am missing?</p>
http://stackoverflow.com/questions/1048736/web-part-connections-in-site-definitions3Web Part connections in site definitionsPrashant Patil2009-06-26T11:58:05Z2009-06-26T21:08:44Z
<p>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 to specify for that particular web parts in onet.xml.</p>
http://stackoverflow.com/questions/269406/communicate-with-document-library-browser-web-part1Communicate with Document Library Browser Web PartRiddler7772008-11-06T16:50:08Z2009-04-08T11:48:46Z
<h2>Background</h2>
<p>My task is to, in SharePoint, show an image of a process map which should be clickable. Think of an imagemap in html. Some areas take you to other process map images and other brings up a pop-up window.</p>
<p>"Connected" to each process map is a set of documents. These documents are stored in a document library. There are one process map for each folder in the document library. The documents should be shown next to the image. The person clicking either the image or a folder to navigate in the hierarchy should also be able to upload, download and delete the documents.</p>
<h2>Question</h2>
<p>What would be the easiest solution for this?</p>
<h2>My thoughts</h2>
<p>... so far is to create a custom web part which I add above the document library browser (the default one in MOSS 2007). This web part reads some xml file pointing out the image to show and the areas which is to be clickable. It listens for some kind of events from the document library, like clicks on folders in the browser or it reads the current URL to know where in the folder hierarchy we are currently, and from that show the correct process map image. When the image is clicked, the web part updates the image and tells the document library to update accordingly.</p>
<p>Is this feasible? Am I on the wrong track? How do I communicate with a document library?</p>
<p>Thanks, Martin</p>
http://stackoverflow.com/questions/668056/is-there-a-way-to-rebuild-repair-asp-net-personalization-tables-without-losing-th0Is there a way to rebuild/repair ASP.Net personalization tables without losing the data inside?Christopher2009-03-20T21:23:14Z2009-03-22T11:38:55Z
<p>I inherited an Asp.Net app that uses ASP.Net membership services. I am trying to add web parts with personalization to the site, and am getting a lot of errors. It looks like the tables generated by Aspnet_regsql.exe have been changed - probably copied at some point in the past using "select into" causing them to lose all their indexes and primary keys.</p>
<p>How can I repair these tables without losing all the data inside?</p>
http://stackoverflow.com/questions/638314/why-does-runwithelevatedprivileges-fail-to-execute1Why does RunWithElevatedPrivileges fail to execute?netseng2009-03-12T12:00:56Z2009-03-13T00:28:18Z
<p>I'm trying to make a web part that greps user comments and stores it in custom list, I wrote this code to add a list to the site once the web part added to the page,</p>
<pre><code>[Guid("c314a0e8-0210-4064-b79e-bfd3594c6083")]
public class CommentWriteSpace : System.Web.UI.WebControls.WebParts.WebPart
{
SPSite site = null;
SPWeb web = null;
public CommentWriteSpace()
{
SPSecurity.CodeToRunElevated foo = new SPSecurity.CodeToRunElevated(doit);
SPSecurity.RunWithElevatedPrivileges(foo);
SPListCollection listCollection = web.Lists;
Guid listGuid = listCollection.Add("Comments List", "A list of user comments", SPListTemplateType.GenericList);
listCollection[listGuid].Fields.Add("User", SPFieldType.User, true);
listCollection[listGuid].Fields.Add("Comment", SPFieldType.Text, true);
listCollection[listGuid].OnQuickLaunch = true;
listCollection[listGuid].Update();
//this.Page.Request.Url.ToString()
}
public void doit()
{
site = SPContext.Current.Site;
web = site.OpenWeb();
}
}
</code></pre>
<p>But the <code>RunWithElevatedPrivileges</code> method throw an exception, I guess it's a permission issue, the exception is the same as one appears when executing <code>site.OpenWeb();</code> method without elevating privileges.</p>
<p>What could be the problem?</p>
http://stackoverflow.com/questions/637915/adding-presence-indicator-to-a-custom-web-part1Adding presence indicator to a custom web partF5ToDebug2009-03-12T09:48:07Z2009-03-12T23:53:50Z
<p>I have a custom web part which is generating some user data. I have added the appropriate code to output the standard presence icon and menu however this is acting rather stangely.</p>
<p>The rendered html of my web part is as follows:</p>
<pre><code><span>
<a href="http://mysite/Person.aspx?accountname=USERID">USERNAME</a>&nbsp;
<img border="0" height="12" width="12" src="/_layouts/images/blank.gif" onload="IMNRC('USEREMAIL')" id="imnUSERID" ShowOfflinePawn="1" />
</span>
</code></pre>
<p>Obviously replacing USERID, USERNAME, USEREMAIL etc.</p>
<p>The problems are twofold. </p>
<p>1) In IE7 the presence information does not get retrieved. The menu displays correctly but the icon does not appear and when you hover over the gap the drop down menu does not provide IM settings.</p>
<p>2) In IE8 RC1 the presence information comes back correctly and the icon displays, but the drop down list is rendered severeal inches above the icon. (<a href="http://twitpic.com/1z4r9" rel="nofollow">see this screenshot</a>)</p>
<p>Any help with these issues, or with other tips about adding presence to custom web parts would be greatfully received.</p>
<h3>Update on progress</h3>
<p>*- Adding web page to 'Trusted Sites' for IE7 - did nothing
- Compatability view for IE8 makes no difference.
- Changed to id="CSRP_id,type=sip"
Changed code to the following on recommendation:*</p>
<pre><code><span>
<img class="PresenceImage" src="/_layouts/images/imnhdr.gif" onload="IMNRC('USEREMAIL')" name="imnmark" ShowOfflinePawn="1" id="contact_im,type=sip" />
</span>
</code></pre>
<p><em>None of the above updates have been succesful.</em></p>
http://stackoverflow.com/questions/75747/sharepoint-best-way-to-display-lists-of-non-sharepoint-content-with-compatible1Sharepoint: Best way to display lists of non-Sharepoint content with "compatible" UI?Steve Eisner2008-09-16T19:01:29Z2009-03-12T11:26:35Z
<p>I've built a web part for Sharepoint that retrieves data from an external service. I'd like to display the items in a way that's UI-compatible with Sharepoint (fits in with its surroundings.)</p>
<p>I'm aware of the "DataFormWebPart" but was unable to get one working properly. It requires a valid DataSource and I was unable to build one from the results of a web service call... Part of the problem is that my web service wrappers don't expose the XML return info, rather I have a bunch of deserialized objects. There doesn't seem to be an easy way to turn actual objects into a datasource, or populate a "generic" datasource from object data.</p>
<p>I could use an SPGridView to get the same UI, but the grid control doesn't have much in the way of smarts -and- it forces every field into its own column. I'd prefer to render each list item as a single cell with complex rendering (for instance the way that StackOverflow shows its lists of questions.) I'd also like to get as much of the Sharepoint-standard UI as possible, such as the sorting, filtering, and paging controls.</p>
<p>So, first: Has anyone here written a Sharepoint control that does this, and if so do you have sample code to share? If not: am I overlooking some useful control, whether MS-supplied or available in an external library?</p>
<p>Thanks!
Steve</p>
http://stackoverflow.com/questions/633633/sharepoint-how-can-i-find-all-the-pages-that-host-a-particular-web-part1Sharepoint: how can i find all the pages that host a particular web part?nailitdown2009-03-11T07:24:19Z2009-03-11T12:46:23Z
<p>As the question says - is there a way to determine which pages are including my web part?</p>
http://stackoverflow.com/questions/296463/reach-session-in-a-usercontrol-loaded-in-a-webpart0Reach Session in a UserControl loaded in a WebPartRomias2008-11-17T18:43:40Z2009-01-20T19:10:12Z
<p>I have a WebPart in MOSS 2007 that sets a variable in Session.
Later, when loading a Webpart that loads a UserControl, the Session is NULL (not just the variable)</p>
<p>The Webpart that loads the UserControl have access to Session properly.</p>
<p>The Webpart "lives" within a ClassLibrary DLL, the UserControl are part of a WebApplication.</p>
<p>It seems that the UserControl and MOSS & Webparts are not sharing the same Session.</p>
<p>It doesn't make sense for me... for you?</p>
http://stackoverflow.com/questions/133328/develop-sharepoint-web-parts-in-asp-net5Develop SharePoint web parts in ASP.NETTheZenker2008-09-25T13:30:45Z2008-12-31T21:14:21Z
<p>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 server during the time I need to prototype these parts.</p>
<p>Does anyone know of any reasons that this approach will not work?
If this approach is not recommended, what would other options be?
Any suggestions on a resource/tutorial on what to consider when developing an ASP.NET web part with SharePoint in mind?</p>
<p>Thanks</p>
<p><strong>Edit: 12/31/2008</strong>
I finally marked an answer to this one. It took me a while to realize that going the SharePoint route right away, though painful at first, is the best way to go about it. The free VPC image makes getting set up to develop relatively painless. </p>
<p>While you can, as I did, develop web parts in ASP.NET without SharePoint, when it comes to developing and deploying SharePoint applications you haven't learned a thing, only pushed the learning curve off into a time when you think you are done, (and have probably informed stakeholders to that effect). To delay the SharePoint learning curve doesn't do you or your project any favors, and your final product will better for the expertise you gain along the way.</p>
http://stackoverflow.com/questions/302918/are-asp-net-web-parts-a-viable-technology-for-implementing-a-portal-architecture4Are ASP.NET Web Parts a viable technology for implementing a portal architecturebriangraf2008-11-19T18:43:30Z2008-11-19T21:44:19Z
<p>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 framework and like the "widgetlike" functionality in iGoogle or pageflakes and would like to get that kind of feature in my application. The real troubling issue from my perspective is that the drag & drop layout features of web parts do not work in non-IE browsers unless you use the latest ASP.NET AJAX futures library. It seems to me if Microsoft meant this to be a foundation technology, they would have moved these features into the main product by now. </p>
<p>Are web parts a dead-end technology? If so, are there any alternatives?</p>