active questions tagged webparts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:30:45Z http://stackoverflow.com/feeds/tag/webparts http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816908/display-webpart-controls-if-user-is-logged-in-asp-net-3-5 0 Display WebPart controls if user is logged in - ASP.NET 3.5 spike5792 2009-11-29T21:53:36Z 2009-11-29T21:53:36Z <p>I know it's possible to use the LoginView code to display content when the user is logged in. But I am trying to do this with a webpart control, but when I do this with the drop down list for picking the Browse, Design and Catalog menu, the VB code is still trying to look for the dropdownlist. But because I'm not yet logged in, the dropdownlist isn't yet visible so I'm erroring with the VB code.</p> <p>What's the best way to get around this problem?</p> http://stackoverflow.com/questions/1797573/vb-net-aspxauth 0 vb.net .aspxauth Morgan 2009-11-25T15:11:56Z 2009-11-25T15:11:56Z <p>I am working with a large site trying to implement web parts for particular users in a particular subdirectory but I can't get the .ASPXAUTH cookie to be recognized. I've read dozens of tutorials and MS class library pages that tell me how it <em>should</em> work to no avail. I am brand new to Web parts, so I'm sorry if I'm unclear.</p> <p>The idea is that logged in users can travel the site, but then when they go to their dashboard, they are programmatically authenticated using Membership and FormsAuthentication to pull up their Personalization.</p> <p>When I step through the code, I can see the cookie being set, and that it exists on the following page, but Membership.GetUser() and User.Identity are both empty. I know the user exists because I created it programmatically using Membership.CreateUser() and I can see it when I do Membership.GetAllUsers() and it's online when i use Membership.GetUser(username) but the Personalization doesn't work.</p> <p>Right now, I'm just trying to get the proof of concept going. I've tried creating the ticket and cookie myself, and also using SetAuthCookie() (code follows). I really just need a clue as to what to look for.</p> <p>Here's the "login" page...</p> <pre><code> If Membership.ValidateUser(testusername, testpassword) Then -- Works FormsAuthentication.SetAuthCookie(testusername, true) Response.Redirect("webpartsdemo1.aspx", False) End If </code></pre> <p>And the next page (webpartsdemo1.aspx)</p> <pre><code>Dim cookey As String = ".ASPXAUTH" lblContent.Text &amp;= "&lt;br&gt;&lt;br&gt;" &amp; Request.Cookies(cookey).Name &amp; " Details" lblContent.Text &amp;= "&lt;br&gt;path = " &amp; Request.Cookies(cookey).Path lblContent.Text &amp;= "&lt;br&gt;domain = " &amp; Request.Cookies(cookey).Domain lblContent.Text &amp;= "&lt;br&gt;expires = " &amp; Request.Cookies(cookey).Expires lblContent.Text &amp;= "&lt;br&gt;Secure only? " &amp; Request.Cookies(cookey).Secure lblContent.Text &amp;= "&lt;br&gt;HTTP only? = " &amp; Request.Cookies(cookey).HttpOnly lblContent.Text &amp;= "&lt;br&gt;Has subkeys? " &amp; Request.Cookies(cookey).HasKeys lblContent.Text &amp;= "&lt;br/&gt;&lt;br/&gt;request authenticated? " &amp; Request.IsAuthenticated.ToString lblContent.Text &amp;= " Getting user&lt;br/&gt;Current User: " Dim muGidget As MembershipUser If Request.IsAuthenticated Then muGidget = Membership.GetUser lblContent.Text &amp;= Membership.GetUser().UserName Else lblContent.Text &amp;= "none found" End If </code></pre> <p>Output:</p> <pre><code>.ASPXAUTH Details path = / domain = expires = 12:00:00 AM Secure only? False HTTP only? = False Has subkeys? False request authenticated? False Getting user Current User: none found </code></pre> <p>Sorry to go on so long. Thanks for any help you can provide.</p> http://stackoverflow.com/questions/1745530/asp-net-web-parts-not-stored-in-a-cookie 0 ASP.NET web parts - not stored in a cookie pkolodziej 2009-11-16T23:22:15Z 2009-11-17T02:34:19Z <p>Recently I was reading the <a href="http://en.wikipedia.org/wiki/Microsoft%5FCertified%5FProfessional#Technology%5FSeries%5F.28MCTS.29" rel="nofollow">MCTS</a> ASP.NET 3.5 exam preparation book. I finished the lesson about web parts. The author said that user personalization is stored in a database and tracked by a cookie in a web browser. </p> <p>I checked the database - it's there. </p> <p>It seems however that the personalization information has noting to do with a cookie. It is recognized across multiple browsers. I even tried deleting all cookies and the webparts state are the same across browsers.</p> <p>Do you have any idea WHY is that and HOW does it work without a cookie?</p> http://stackoverflow.com/questions/1730065/how-to-create-a-web-part-to-track-page-creation-time 0 how to create a web part to track page creation time George2 2009-11-13T15:48:15Z 2009-11-13T19:33:26Z <p>Hello everyone,</p> <p>I am new to SharePoint Server 2007 Web Part, and I am using SharePoint Server 2007 on Windows Server 2008. I program using VSTS 2008 + C# + .Net 3.5.</p> <p>I want to create a simple web part which could display page creation time and modified time (display such time information at the bottom of a web page).</p> <p>Any reference code samples or tutorials -- anything helpful for a newbie of SharePoint 2007 Web Part or this specific time tracking issue is helpful.</p> <p>thanks in advance, George</p> http://stackoverflow.com/questions/1717431/what-is-the-difference-of-webparts-and-websites 1 What is the difference of webparts and websites? Sikender 2009-11-11T19:16:36Z 2009-11-11T19:25:51Z <p>i dont know the actual use of webparts , so. better to know difference with webpage ?</p> <p>any answer is appreriate..</p> http://stackoverflow.com/questions/1691065/custom-personalization-provider-implement-findstate-method 0 Custom Personalization Provider - Implement FindState method Clark 2009-11-06T22:52:46Z 2009-11-06T22:52:46Z <p>I have been breaking my head over this. I appreciate any help. </p> <p>I have a custom PersonalizationProvider, custom WebPartManager and custom WePart class. I have custom data tables for storing the Personalization Data per user. My task is to programmtically loop through all the web parts added by each user so that I can set a personalizable attribute. </p> <p>According to the documentation, FindState method returns a PersonalizationStateInfoCollection for a given PersonalizationStateQuery:</p> <pre><code>PersonalizationStateQuery pq = new PersonalizationStateQuery(); pq.PathToMatch = path; pq.UsernameToMatch = userName; int count; CustomPersonalizationProvider provider= new CustomPersonalizationProvider(); PersonalizationStateInfoCollection pcol = provider.FindState(PersonalizationScope.User, pq, 0, Int32.MaxValue, out count); </code></pre> <p>PersonalizationProvider is an abstract class and I will have to provide my own implementation for the FindState method in my custom class. I have spent last 6 hours trying to find something and I don't know how to implement this method. </p> <p>The PersonalizationData is blob. I could deserialize it to object array. But nothing further. I have no idea how to serialize/deserialize that blob in to PersonalizationStateInfoCollection. </p> <pre><code>String BlobString = Convert.ToBase64String(UserDataBlob); ObjectStateFormatter formatter = new ObjectStateFormatter(); Object[] DeserializedObjects = (Object[])formatter.Deserialize(BlobString); </code></pre> <p>Does anyone know how WebPartManager serializes the UserPersonalizationData in to the byte array that is stored in the database?</p> http://stackoverflow.com/questions/1675554/web-parts-user-personalization-data-in-net 0 Web Parts - User Personalization Data in .NET Clark 2009-11-04T17:53:03Z 2009-11-04T17:55:36Z <p>Is there a way to get a list of all web parts added by each user from the Web Part User Personalization data? </p> http://stackoverflow.com/questions/1648042/creating-profitable-sharepoint-webparts 0 Creating profitable sharepoint webparts ironic_username 2009-10-30T04:45:21Z 2009-11-03T08:49:25Z <p>At my day job, we are currently porting our portal to Sharepoint MOSS 2007. Like it or not, there is alot of big companies following suit. After working with the consulting company that setup ours (and buying their EXPENSIVE crappy webparts), I wanted to know some annoyances in MOSS 2007 that would make good commercial webparts. Or would it be a better to focus on making webparts for 2010? (as some of the issues in 2007 might have been solved there)</p> http://stackoverflow.com/questions/1640627/how-to-access-a-stylesheet-file-from-a-webpart 0 How to access a stylesheet file from a webpart earlz 2009-10-28T22:45:18Z 2009-10-28T22:45:18Z <p>Hi, I have a webpart and while I was adding some style classes, I figured I'd just reuse some stuff I already wrote in a global Stylesheet.css. This stylesheet is linked to by the Master Page. Well, now my problem is that webparts can't be linked with a masterpage. So how can I use style classes from an external stylesheet inside of a webpart?</p> <p>I would really prefer to not have to do a lot of copy and pasting to do an inline stylesheet in the webpart..</p> http://stackoverflow.com/questions/231690/sharepoint-web-part-vs-asp-net-user-control 7 Sharepoint: Web Part vs. ASP.NET User Control Ryan Smith 2008-10-23T21:53:42Z 2009-10-26T09:50:18Z <p>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?</p> <p>I already know how to create the user controls that I need, so it seems like the extra effort of creating a web part is just unnecessary leg work.</p> <p>What are the advantages of using a web part over just creating and ASP.NET user control?</p> http://stackoverflow.com/questions/1595987/can-i-deploy-moss-based-webparts-on-asp-net-web-form-and-how 0 Can i deploy MOSS based webparts on ASP.NET web form and how Nimish 2009-10-20T17:00:07Z 2009-10-21T12:40:38Z <p>Hi,</p> <p>i need to know, if we can deploy webparts that are created in MOSS for MOSS on a ASP.NET page and use them. Or is there any way of using the webparts with MOSS.</p> <p>TIA, Nimish </p> http://stackoverflow.com/questions/1586889/webparts-in-asp-net 0 Webparts in asp.net? Surya sasidhar 2009-10-19T03:58:49Z 2009-10-19T05:18:54Z <p>what is webparts in asp.net? a simple example on webparts. thank you in advance.</p> http://stackoverflow.com/questions/1568924/sharepoint-ecb-menu-items-not-visible-when-doc-lib-is-displayed-in-a-web-part 1 Sharepoint ECB menu items not visible when doc lib is displayed in a web part. Skip 2009-10-14T20:50:57Z 2009-10-15T17:05:13Z <p>My document context menus display correctly when accessed directly from a document library but when this same doc lib is displayed in a web part, the context menu is missing various items. I debugged the code in core.js using a userid that had all permissions turned on and noticed that the permissions mask was properly set (to 0x7ffffffffffffff) when the context menu was accessed directly from the doc lib but when it was accessed from the doc lib in a web part, the permissions mask was 0.</p> <p>Is it necessary to permission users for web parts as well as for document libraries? What else could explain this behaviour? </p> <p>We recently migrated to Sharepoint 2007 from Sharepoint 2003; this problem does not occur in our SP 2003 site, only in SP 2007. </p> <p><b>Update 1:</B> New info which may make some of the existing discussion obsolete: on some of our pages, we display doc libs using the webparts that SP automatically creates for you when you create a doc lib (SP does do this, right? I'm a bit new to SP so bear with me). The context menus for the docs displayed in this wepart work fine as our users have been permissioned for these doc libs and SP is giving the correct permissions mask. </p> <p>However, we also display certain docs by iterating over the lists associated with a given web. We get our web like this:</p> <p>private SPWeb _web;</p> <p>And iterate over each list liks this:</p> <p>foreach (SPList list in _web.Lists)</p> <p><B>So, the only question I have now is, is it possible, necessary and/or required to assign permissions to SP lists as well as to doc libs?</B></p> http://stackoverflow.com/questions/1571069/sorting-option-not-working-in-a-spgridview 0 Sorting option not working in a spgridview. unknown (yahoo) 2009-10-15T08:36:20Z 2009-10-15T08:36:20Z <p>I have created a webpart which contains a spgridview that is bound to a dataview.My problem is that even though i have set the allowsorting option to true ,the gridview header shows no link buttons. The code for the webpart is as follows:</p> <pre><code> public void createthegridviewfields() { foreach (string col in colnames) { if (col == null || col == string.Empty) break; BoundField bf = new BoundField(); bf.DataField = col; bf.HeaderText = col.ToUpper(); bf.SortExpression = col; gr.Columns.Add(bf); } } public void createthegridview() { createthegridviewfields(); gr.DataSource = gr_view; gr.DataBind(); } protected override void CreateChildControls() { connstring = "Provider=SQLNCLI.1;Data Source=" + System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"] + ";Initial Catalog=" + dbname.ToString() + ";Integrated Security=SSPI;Persist Security Info=False;"; fields = removewhitespaces(fields); Regex r = new Regex(",+"); fields = r.Replace(fields, ","); querystring = "select " + fields + " from " + tablename; myfunctions f = new myfunctions(); System.Data.DataTable t = f.generatedatasetfromsqlquery(querystring, connstring);//this generates the datatable which is filled with the queried values. gr_view = new DataView(t); gr.AutoGenerateColumns = false; createthegridview(); gr.AllowSorting = true; gr.Sorting += new GridViewSortEventHandler(gr_Sorting); this.Controls.Add(gr); this.Controls.Add(new LiteralControl("&lt;br/&gt;")); base.CreateChildControls(); } void gr_Sorting(object sender, GridViewSortEventArgs e) { string lastExpression = ""; if (ViewState["SortExpression"] != null) lastExpression = ViewState["SortExpression"].ToString(); string lastDirection = "asc"; if (ViewState["SortDirection"] != null) lastDirection = ViewState["SortDirection"].ToString(); string newDirection = "asc"; if (e.SortExpression == lastExpression) newDirection = (lastDirection == "asc") ? "desc" : "asc"; ViewState["SortExpression"] = e.SortExpression; ViewState["SortDirection"] = newDirection; gr_view.Sort = e.SortExpression + " " + newDirection; gr.DataBind(); } </code></pre> http://stackoverflow.com/questions/761083/sharepoint-webpart-and-overiding-the-css-style 1 Sharepoint webpart and overiding the css style Rob 2009-04-17T16:15:57Z 2009-10-13T23:42:17Z <p>Have a look at this picture</p> <p><img src="http://www.abbeylegal.com/downloads/2009-04-01/web%20part%20top%20line.jpg" alt="alt text" /></p> <p>Does anyone know what css style is used for the line/border highlighted in red? I'm trying to over ride it in my custom style sheet but I’m not having any luck, so far I’ve tried overiding these different styles...</p> <p>.ms-viewheadertr <br/> .ms-vh2 <br/> .ms-vb <br/> .ms-vb2 <br/> .ms-unselectedtitle <br/> .ms-summarystandardbody <br/></p> <p>which is changing the display but not the border, it's enough to make you go mad!</p> <p>Update:</p> <p><em>.ms-WPHeader</em> is indeed one of the css classes, however if you set the border-style to none there is still a line that appears; just a little thinner. I can use <em>.ms-viewheadertr</em> to completely remove the header but just can't seem remove this one line.</p> http://stackoverflow.com/questions/21159/best-framework-for-implementing-igoogle-or-pageflakes-asp-net 6 Best framework for implementing iGoogle or pageflakes (ASP.NET) csmba 2008-08-21T20:54:40Z 2009-10-05T20:38:33Z <p>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 having to wait for the next version.</p> <p>my gold standard is <a href="http://www.pageflakes.com/" rel="nofollow">pageflakes</a></p> <p>any suggestions?</p> http://stackoverflow.com/questions/869977/webparttitleid-differences-between-asp-net-webparts-and-sharepoint-webparts 1 WebPartTitleID differences between ASP.NET webparts and Sharepoint webparts Darin Bradford 2009-05-15T17:39:39Z 2009-10-04T11:00:04Z <p>when I reference <strong>Microsoft.SharePoint.WebPartPages.WebPart</strong> the WebPartTitleID is generated on pages in the following format. WebPartTitleWPQ2</p> <p>when I reference the <strong>System.Web.UI.WebControls.WebParts.WebPart</strong> </p> <p>the WebPartTitleID is generated on pages like the following </p> <p>WebPartTitlectl00_m_g_cfe73da2_e9aa_44e3_aa10_b8a300837217</p> <p>is there a way to control this so I get the WPQ pattern on the asp.net webpart ?</p> http://stackoverflow.com/questions/542435/getting-started-with-webparts 0 Getting started with WebParts Joel Coehoorn 2009-02-12T17:28:06Z 2009-09-25T06:00:02Z <p>Where I work the department has it's own intranet site (not sharepoint!) that is separate from the main company's. The main page is a jumble of over 150 different links grouped into about 20 categories. It's a real mess of a page.</p> <p>What I want to do is turn this page into a sitemap. I'll put all the links into a database that the sitemap draws from. This part is almost done already. Then I want to create a new home page that uses web parts and this sitemap to create a MyYahoo or iGoogle -like experience. </p> <p>The idea is to create a number of controls that can be included on the page at the discretion of each user, many of them using the sitemap as a datasource for their content. I'll have controls so users can add one whole group from the sitemap, individual links, or even group together a set of links under a common heading (and include multiple customized instances of this control, as well). We also have some internal RSS feeds, so I want a control to be able to add an rss feed to the page. </p> <p>When all this is up it will enable us to build new functionality in terms of webpart widgets that can be used, rather than necessitating a new page for every little feature we need. I also want to be able to create templates, so that users with similar job functions can start out with pages that will include most of what they'll need as a base, rather than every user needing to start from scratch. It's all rather ambitious.</p> <p>However, I'm having a hard time wrapping my head around webparts. It should be really simple, but I'm just not seeing how it all fits together. Can someone point me to a good guide or tutorial? The page one google results for variations on <code>webpart tutorial</code> just haven't helped me.</p> http://stackoverflow.com/questions/1431684/moss-web-parts-or-aspx-pages-controls 0 MOSS Web Parts or .aspx pages/controls 78lro 2009-09-16T08:28:47Z 2009-09-16T08:31:01Z <p>When developing in MOSS I would be interested to hear peoples views on whether they choose to wrap functionality in web parts or to create .aspx pages and deploy those to MOSS and how best to make that decision.</p> http://stackoverflow.com/questions/1424269/how-can-you-determine-what-sharepoint-webpartzone-you-are-in-from-an-xsl-file-to 0 How can you determine what Sharepoint WebPartZone you are in from an XSL file to dynamically output the style? Mobius 2009-09-14T22:46:00Z 2009-09-15T07:24:06Z <p>I have a page with 5 Sharepoint web part zones and an XML web part that can go in any of them. One of them needs different styling than the other 4. Is it possible to have the XSL file determine what webzone the web part is in and style it appropriately?</p> http://stackoverflow.com/questions/1412065/sharepoint-webparts 0 Sharepoint WebParts YeomansLeo 2009-09-11T16:48:34Z 2009-09-11T19:44:11Z <p>I just finished my first web Part for Sharepoint WSS 3.0 and I'm very excited.<br /> What it does is that just makes a connection to the TFS (team foundation) to get the OPEN and FIXED bugs by Sprint (We actually use SCRUM agile Process). Then takes both values (open &amp; fixed) and puts them in a sharepoint list. A chart is fed with that list (using codeplex's web parts). </p> <p>In the other side the web part retrieves information about the current team names from the Project Server, it follows the same procedure but it just feeds a Sharepoint list.</p> <p>Any recommendations on performance or anything else would be much appreciated.</p> <p>PD. i will set this as a community wiki 'cause there is no correct or wrong answer, just waiting for your feedback =D.</p> http://stackoverflow.com/questions/1330614/web-parts-dynamically-created-controls-and-eventhandlers 0 Web parts, dynamically created controls and eventhandlers Moo 2009-08-25T20:02:29Z 2009-09-10T10:50:40Z <p>Hi,</p> <p>What is the best way to display, in a web part, dynamic tables where each cell can cause a postback to display a different set of data?</p> <p>For example, imagine some financial data:</p> <pre> Table 1: Quarters in year | Q1 | Q2 | Q3 | Q4 | Things 1 | 23 | 34 | 44 | 32 | Things 2 | 24 | 76 | 67 | 98 | </pre> <p>On clicking on the value for Q2, Things 1 (34), this will lead to a second table being displayed instead of Table 1:</p> <pre> Table 2: Weeks in Quarter | W1 | W2 | W3 | W4 | W5 | W6 | W7 | SubThings 1 | 231 | 22 | 44 | 22 | 344 | 86 | 12 | SubThings 2 | 14 | 75 | 47 | 108 | 344 | 86 | 12 | </pre> <p>The problem with the approach I am taking at the moment is that I can create Table 1 in CreateChildControls, which leads to all the events being wired up fine for all the linkbuttons in the cells.</p> <p>However, because on the postback, I need to create Table 1 in CreateChildControls again, in order to have the eventhandlers correctly wired up, and as the events fire <em>after</em> CreateChildControls, I only know that I need to change the table <em>after</em> CreateChildControls.</p> <p>Thus, wherever I create Table 2 as a resault (since its after CreateChildControls), I cant get it to wire up events correctly.</p> <p>Any thoughts?</p> <p>Regards Moo</p> <p>Edit: Solved it.</p> <p>What you need to do is check in OnPreRender any eventhandler calls, set any flags you need to and then call this.CreateChildControls manually so the new table is created and everything is wired up correctly.</p> http://stackoverflow.com/questions/1245086/only-one-web-part-added-to-the-wp-gallery-when-multiple-webpart-files-specified-i 1 Only one web part added to the wp gallery when multiple webpart files specified in module Michhes 2009-08-07T14:35:16Z 2009-09-04T20:00:04Z <p>I'm trying to deploy multiple web parts as part of the same feature. SharePoint itself seems to do this quite happily by specifying multiple File elements in a single Module element (see C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\SearchWebParts); in my case, only the first web part is added to the Web Parts gallery, albeit to the Miscellaneous group instead of the group specified in the Property element. </p> <pre><code>&lt;Elements xmlns="http://schemas.microsoft.com/sharepoint/"&gt; &lt;Module Name="WebPartPopulation" Url="_catalogs/wp" Path="WebParts"&gt; &lt;File Url="Test1.webpart" Type="GhostableInLibrary"&gt; &lt;Property Name="Group" Value="MyGroup" /&gt; &lt;/File&gt; &lt;File Url="Test2.webpart" Type="GhostableInLibrary"&gt; &lt;Property Name="Group" Value="Mygroup" /&gt; &lt;/File&gt; &lt;/Module&gt; &lt;/Elements&gt; </code></pre> <p>My .webpart files are located in the same directory as the elements file; I tried setting Path="" on the Elements element but nothing gets deployed then. Switching around the two File elements deploys Test2.webpart instead of Test1 and Test1.webpart is not added on feature activation. Adding a single File per Module does work but that means duplicating the Module elements. </p> <p>I'm self-closing the Property elements but that's surely not a sin?? What am I doing wrong?</p> http://stackoverflow.com/questions/1377007/in-a-provider-consumer-relationship-how-do-let-the-consumer-communicate-through-a 0 In a provider-consumer relationship how do let the consumer communicate through a custom interface dcchsieh 2009-09-04T03:00:21Z 2009-09-04T03:00:21Z <p>Currently, I've implemented a custom interface </p> <pre><code>public interface IMessage { void PerformOperation(); } </code></pre> <p>and I had the Provider Web Part implement this interface.</p> <p>I've also implemented a custom class to pass to the consumer web part.</p> <pre><code>public class CustomDataPipe { public int referenceId { get; set; } } </code></pre> <p>I was wondering if there was a way to pass both the interface (therefore the consumer web part can call it) and also the custom class to populate data on the consumer.</p> http://stackoverflow.com/questions/1341210/adding-web-parts-to-the-page-instance-based-on-page-layout-using-feature 1 Adding Web Parts to the Page Instance based on Page Layout using Feature. Kusek 2009-08-27T13:45:51Z 2009-08-31T14:08:34Z <p>I am trying to add the Web Parts to Page Instance of the Page Layout using a Feature.I know it should be through <strong>AllUsersWebPart</strong> element .I could find the reference of adding a Default Web Part to Page Layout (<strong>PortalLayouts</strong> feature does it). Also I have seen same in <strong>onet.xml</strong> . I wanted to know if it possible to create an instance of the page based on the Page layout and add web part to it using the feature.</p> http://stackoverflow.com/questions/1345747/asp-net-webpart-title-issue 0 asp.net webpart title issue prashant 2009-08-28T08:39:42Z 2009-08-28T08:45:05Z <p>We are looking for a solution to have rounded corners gradient on web part headers in Asp.net. Till now we are able to get the rounded corned with middle section filled with color, but need a solution to repeat the gradient image only on the center section of header (without overwriting the corners).</p> <p>It is working in Mozilla but NOT in IE</p> <pre><code>&lt;style&gt; </code></pre> <p>.PartTitleStyle { /<em>background-color:#003399;</em>/ height:25px; font-family:Arial, Helvetica, sans-serif; font-size:8px; /<em>padding:0px 0px 5px 10px;</em>/</p> <pre><code>color:#fff; background-image:url('/Images/bg_top_middle.gif'); background-repeat: repeat-x; background-position: center; width: 93px; } </code></pre> <p>.PartTitleStyle table<br /> {</p> <pre><code>background-image:url(/Images/boxHeaderTopRightBlue.gif); background-repeat: no-repeat; background-position: right top ; padding-right: -10px; </code></pre> <p>}</p> <p>.PartTitleStyle tr { background-image:url(/Images/boxHeaderTopLeftBlue.gif); background-repeat: no-repeat; background-position:left top ; }</p> <p>.PartTitleStyle table td { padding:10px 10px 0 10px;</p> <p>}</p> <p> <p> <pre><code> BorderColor="White " DragHighlightColor="Red" PartStyle-CssClass="" PartTitleStyle-CssClass="PartTitleStyle" PartChromeStyle-BorderStyle="None" MenuPopupStyle-CssClass="" HeaderStyle-ForeColor="White" &gt; </code></pre> http://stackoverflow.com/questions/1342265/spgridview-user-selecting-the-columns 1 SPGridView - User selecting the columns esp 2009-08-27T16:37:26Z 2009-08-27T16:43:25Z <p>Is there a way to extend the SPGridView control in a webpart such that a user can select the columns that they want to display? Kinda like when creating/modifying a view for a list?</p> <p>Thanks</p> http://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart 2 Adding a required field validator to a SharePoint webpart ashwnacharya 2009-03-24T13:50:39Z 2009-08-20T15:54:19Z <p>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. </p> <p>I am creating the required field validator as follows:</p> <pre><code>vldProjectError = new RequiredFieldValidator(); vldProjectError.ForeColor = Color.Red; vldProjectError.ErrorMessage = Resources.LABEL_PROJECT_ERROR; vldProjectError.ControlToValidate = txtProjectName.ClientID; vldProjectError.Display = ValidatorDisplay.Dynamic; this.Controls.Add(vldProjectError); </code></pre> <p>The above code snippet is in th CreateChildControls() override. When i open this webpart page, i get a generic error message in SharePoint. I cannot trap the error by debugging.</p> <p>I noticed that the exception is thrown after CreateChildControls() and before the Render() method, because the debugger never enters the Render() method</p> <p>Any Idea how to use validators in sharepoint webparts? Is there anything I am missing?</p> http://stackoverflow.com/questions/1300429/web-parts-in-asp-net-3-5 0 Web Parts in ASP.NET 3.5 Dante 2009-08-19T14:41:46Z 2009-08-20T10:43:00Z <p>I'm trying to create draggable web parts in ASP.NET 3.5 but the thing just doesn't want to be dragged. I already tried the workarounds for making it compatible with Firefox, by using AJAX, but still doesn't work.</p> <p>This is code I have on my page:</p> <pre><code>&lt;asp:WebPartManager ID="WebPartManager1" runat="server"&gt; &lt;/asp:WebPartManager&gt; &lt;uc2:DisplayModeMenu ID="DisplayModeMenu1" runat="server" /&gt; &lt;div&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt; &lt;asp:WebPartZone ID="SidebarZone" runat="server" HeaderText="Sidebar"&gt; &lt;ZoneTemplate&gt; &lt;asp:Label runat="server" ID="linksPart" title="My Links"&gt; &lt;a href="http://www.asp.net"&gt;ASP.NET site&lt;/a&gt; &lt;br /&gt; &lt;a href="http://www.gotdotnet.com"&gt;GotDotNet&lt;/a&gt; &lt;br /&gt; &lt;a href="http://www.contoso.com"&gt;Contoso.com&lt;/a&gt; &lt;br /&gt; &lt;/asp:Label&gt; &lt;uc1:SearchUserControl ID="SearchUserControl1" runat="server" title="Search" /&gt; &lt;/ZoneTemplate&gt; &lt;/asp:WebPartZone&gt; &lt;/td&gt; &lt;td&gt; &lt;asp:WebPartZone ID="MainZone" runat="server" HeaderText="Main"&gt; &lt;ZoneTemplate&gt; &lt;asp:Label ID="lbl" Text="Some text" Title="Content" runat="server"&gt;&lt;/asp:Label&gt; &lt;/ZoneTemplate&gt; &lt;/asp:WebPartZone&gt; &lt;/td&gt; &lt;td&gt; &lt;asp:EditorZone ID="EditorZone1" runat="server"&gt; &lt;ZoneTemplate&gt; &lt;asp:AppearanceEditorPart ID="AppearanceEditorPart1" runat="server" /&gt; &lt;asp:LayoutEditorPart ID="LayoutEditorPart1" runat="server" /&gt; &lt;/ZoneTemplate&gt; &lt;/asp:EditorZone&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p>I never get the drag cursor when I hover the titles. Any idea on what I may be doing wrong?</p> <p>EDIT: I am in the page in Edit mode, not Browse mode....</p> <p>Tks in advance.</p> http://stackoverflow.com/questions/368480/removing-scrollbars-from-content-editor-page-viewer-webpart 2 Removing scrollbars from Content Editor/Page Viewer Webpart ashwnacharya 2008-12-15T14:14:41Z 2009-08-18T16:15:27Z <p>I am trying to display an HTML page inside another SharePoint webpart page.</p> <p>I used the Out-of-the-box page viewer webpart, but the page viewer webpart displays a disabled scrollbar inside it.</p> <p>I also tried using a content editor webpart with an IFRAME tag in it, but still it didnt't work.</p> <p>This is the code i used in the content editor webpart. </p> <pre><code>&lt;iframe name="Iframe" src="URL1" scrolling="no" FRAMEBORDER="0" style="width:100%; border:0; height:100%; overflow:hidden;"&gt; &lt;/iframe&gt; </code></pre>