Posts Tagged ‘ Web Parts ’

New SharePoint Web Part Aggregates Twitter, RSS

Virto_logo_2009.jpg A new web part from Virto Software (news, sITe) has just been released that will enable users to aggregate posts from TwITter and RSS feeds and place them on SharePoint pages all in a single view wITh a display that can be easily customized.

<a href="http://www.cmswire.com/cms/enterprise-20/new-sharepoint-web-part-aggregates-twITter-rss-007748.php?utm_source=MainRSSFeed&utm_medium=Web&utm_campaign=RSS-News”>Read full story…

<a href="http://bIT.ly/Ts8lh”><img src="http://images.cmswire.com/images/ico_twITter-newsy_40×40.jpg” alt=”" align=”bottom” border=”0″ width=”40″ height=”40″ />
<a href="http://bIT.ly/Ts8lh”>Follow us on TwITter
<a href="http://bIT.ly/cIV9S4″>
<a href="http://bIT.ly/cIV9S4″>Join free newsletter
<a href="http://bIT.ly/cblfGn”>
<a href="http://bIT.ly/cblfGn”>View upcoming events
<a href="http://bIT.ly/96PqVF”>
<a href="http://bIT.ly/96PqVF”>Find a new job

  • Share/Bookmark

I added a Web Part to my site home page which causes an exception

How do I remove IT?

Since you need to view the page to edIT IT and delete the web part IT’s tricky when you add a web part to your page that causes an exception every time IT’s loaded. Here’s two simple options:

1) retract the solution in Visual Studio

2) use the ?Contents=1 parameter on the web page to see the list of web parts wIThout loading them. for example: http://intranet.contoso.com/SITePages/Home.aspx?Contents=1

Then fix your error or at least add exception handling

  • Share/Bookmark

sharePoint 2010 Foundation installed on windows 7, now for some web part development :) Maybe to extend the ribbon bar :)

sharePoint 2010 Foundation installed on windows 7, now for some web part development :) Maybe to extend the ribbon bar :)

  • Share/Bookmark

RT @davecoleman146: SharePoint Server 2010 Web Parts What do you get OOTB. Find out here – > http://tinyurl.com/yffz96b #sp2010 #webparts

RT @davecoleman146: SharePoint Server 2010 Web Parts What do you get OOTB. Find out here – > http://tinyurl.com/yffz96b #sp2010 #webparts

  • Share/Bookmark

Hide Web Part Headers with SharePoint 2010

A while a go a write a short post on how to hide web part headers in SharePoint 2007.  Recently I had some inquire how to do the same thing for SharePoint 2010.  So, here is what to do in order to hide a web part header in SharePoint 2010.

1.  Add a content editor web part to your page.

2. Edit the Web Part

3. Click in the content area of the web part, click HTML and select “Edit HTML Source”

4. Put the following code in the web part:

  1. <style>
  2.   TR.ms-viewheadertr > TH.ms-vh2 {
  3.   DISPLAY: none
  4.   }
  5. </style>

 

5. Click “OK”

6. Expand “Appearance” (on the right side of the page)

7. Set the chrome type to “None”

8. Click “OK” and then save and check in your page.

The headers of your web part should now be hidden.  This can be extremely helpful when your page contains a web part using “boxed” for your style when creating a list view.  The only downside to this approach is if you have multiple web parts on a single page, it will hide the headers for all the web parts on your site.

How to do the same thing in SharePoint 2007

  • Share/Bookmark

I added a Web Part to my site home page which causes an exception

How do I remove it?

Since you need to view the page to edit it and delete the web part it’s tricky when you add a web part to your page that causes an exception every time it’s loaded. Here’s two simple options:

1) retract the solution in Visual Studio

2) use the ?Contents=1 parameter on the web page to see the list of web parts without loading them. for example: http://intranet.contoso.com/SitePages/Home.aspx?Contents=1

Then fix your error or at least add exception handling

  • Share/Bookmark

Controlling Single Web Parts with CSS Article Posted

I often get questions about how can a particular web part be branded separately from all the rest or be branded by type.  For example you want every Contacts list to have a green header bar instead of a tan header bar.  Or perhaps you want a column of web parts on a page to look different than the main area that contains other web parts.

The latter I have always had a solution for, the former I figured out something today.  As with everything that I focus on, these are “no custom development” / “no .NET code” solutions. You can usually build whatever customization you need with custom code.  If you would like to just rely on CSS however, here you go….

Controlling Single Web Parts with CSS

  • Share/Bookmark

The new content editor WebPart in SharePoint 2010


Ad::
SharePoint 2007 Training in .NET 3.5 technologies (
more information).

Y’all, the Content Editor Webpart in SP2010 has been totally redone. This is great because I distinctly remember people coming upto me and posing me with the following problem in SP2007 –

“I used the content editor webpart on my intranet to maintain some content, and now when I share this content over the extranet (different URL), all the URLs are now broken!”.

Well fear not! The content editor webpart in SharePoint 2010 has been new-i-fied. And I’m glad that it has been because seriously, it is a very useful webpart. Business users love the simplicity it offers. So what’s new in SP2010’s CEWP?

  1. Wiki like editing in edit mode – you edit the webpart, click on it’s client area, and .. well just type in what you want :)
  2. While editing, rich MS-Word like ribbon .. so it feels like you’re typing in word!
  3. Ability to still edit the HTML directly, and check this out, convert the typed in HTML to XHTML with a single button click. WOW! No longer can a business user blame you for unclean HTML, instead you can blame them :) .
  4. Right above the XHTML convert link on the ribbon, there is a very convenient link that allows you to select individual tags, and apply styles to individual tags. VERY VERY useful in producing clean and maintainable HTML right through WYSWYG.
  5. You can edit the content editor webpart, and point it to a txt file location where the actual content is. If you put in an absolute link to where the content is, the CEWP will try to make it a relative link per your AAM settings.
  6. If you put in an absolute link within the CEWP content, the CEWP will try to make it a relative link per your AAM settings.
  7. The ribbon shows you commands down to the tag level. Here is the ribbon for the Table, when you have time, check out the “icon” functionality in the hyperlink tag.

    Ribbon

Comment on the article ….



  • Share/Bookmark