Comments on: WP Tabify: Transform a SharePoint Web Part Zone into Tabs http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/ No GeekSpeak on SharePoint 2007 WSS and MOSS Sun, 21 Nov 2010 00:16:13 -0500 http://wordpress.org/?v=2.8.6 hourly 1 By: Umar http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-112726 Umar Fri, 19 Nov 2010 18:40:17 +0000 http://www.endusersharepoint.com/?p=10441#comment-112726 You can also try this http://sp2010.pathtosharepoint.com/SharePoint-User-Toolkit/Pages/Easy-Tabs-v5.aspx You can also try this
http://sp2010.pathtosharepoint.com/SharePoint-User-Toolkit/Pages/Easy-Tabs-v5.aspx

]]>
By: Kyle Schaeffer http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-112724 Kyle Schaeffer Fri, 19 Nov 2010 18:19:39 +0000 http://www.endusersharepoint.com/?p=10441#comment-112724 Hi, Komal. You'll want to put the code from step 4 either (1) in an attached JavaScript file (attached to your master page or page layout you are using) or (2) directly in the <head> section of your master page (inside a <script> block). Hope this helps. Kyle Hi, Komal. You’ll want to put the code from step 4 either (1) in an attached JavaScript file (attached to your master page or page layout you are using) or (2) directly in the <head> section of your master page (inside a <script> block). Hope this helps.
Kyle

]]>
By: Komal Balakrishnan http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-112688 Komal Balakrishnan Fri, 19 Nov 2010 14:43:04 +0000 http://www.endusersharepoint.com/?p=10441#comment-112688 Dumb question...but I'm a newbie. Step 4...where do you put that part of code? I have everything in there and it's not working so I'm guessing I'm not doing something right. Dumb question…but I’m a newbie. Step 4…where do you put that part of code? I have everything in there and it’s not working so I’m guessing I’m not doing something right.

]]>
By: Umar http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-110237 Umar Wed, 03 Nov 2010 21:57:53 +0000 http://www.endusersharepoint.com/?p=10441#comment-110237 I think this is great, have not seen this before. it is also in pretty good details for the developers or Gurus like you . if you can go in further details like how and where to add this code will be awsome for admins like me . but either way this is great thing to share., I think this is great, have not seen this before. it is also in pretty good details for the developers or Gurus like you . if you can go in further details like how and where to add this code will be awsome for admins like me . but either way this is great thing to share.,

]]>
By: Kyle Schaeffer http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-110200 Kyle Schaeffer Wed, 03 Nov 2010 18:25:49 +0000 http://www.endusersharepoint.com/?p=10441#comment-110200 Hi, Barbara. I will definitely do some testing to see if my script needs to be updated. I'm currently using "ms-WPBody" because it works in both the 2007 and 2010 platforms. Unfortunately, "ms-wpContentDivSpace" is not present in 2007, so I'd have to make some other changes to accomodate for that. I'll take a look and post any updates here if I find a clever workaround. As always, thank you for the feedback! Hi, Barbara. I will definitely do some testing to see if my script needs to be updated. I’m currently using “ms-WPBody” because it works in both the 2007 and 2010 platforms. Unfortunately, “ms-wpContentDivSpace” is not present in 2007, so I’d have to make some other changes to accomodate for that. I’ll take a look and post any updates here if I find a clever workaround.

As always, thank you for the feedback!

]]>
By: Barbara http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-110184 Barbara Wed, 03 Nov 2010 14:49:56 +0000 http://www.endusersharepoint.com/?p=10441#comment-110184 Hi Kyle, thanks for this easy jQuery Tab for SharePoint. Just one thing: for SharePoint 2010 I've found that the code line "$(thisPanel).append($(panelContents).find('.ms-WPBody').html());" only works for Content Editor WebPart, For other OOTB web parts (I haven't tested all, but only listview web part and dataform webpart) the class that works to show/hide content is "ms-wpContentDivSpace" (And it works also for the content editor webpart ;-)). So the code line should become like that: "$(thisPanel).append($(panelContents).find('.ms-wpContentDivSpace').html());" Hi Kyle,
thanks for this easy jQuery Tab for SharePoint.
Just one thing: for SharePoint 2010 I’ve found that the code line
“$(thisPanel).append($(panelContents).find(’.ms-WPBody’).html());”
only works for Content Editor WebPart,
For other OOTB web parts (I haven’t tested all, but only listview web part and dataform webpart) the class that works to show/hide content is “ms-wpContentDivSpace” (And it works also for the content editor webpart ;-)).
So the code line should become like that:
“$(thisPanel).append($(panelContents).find(’.ms-wpContentDivSpace’).html());”

]]>
By: Kyle http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-110172 Kyle Wed, 03 Nov 2010 13:26:19 +0000 http://www.endusersharepoint.com/?p=10441#comment-110172 I just noticed that the script in step two ("Attach the Script") is outdated! I fixed this a couple of weeks ago on my blog, and I've asked EUSP to fix it here as well. This should resolve any issues you had in SharePoint 2007. Sorry for the confusion! I just noticed that the script in step two (”Attach the Script”) is outdated! I fixed this a couple of weeks ago on my blog, and I’ve asked EUSP to fix it here as well. This should resolve any issues you had in SharePoint 2007. Sorry for the confusion!

]]>
By: Kyle Schaeffer http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-109827 Kyle Schaeffer Mon, 01 Nov 2010 01:24:01 +0000 http://www.endusersharepoint.com/?p=10441#comment-109827 Hi, Draxtor. I have tested this in 2007, but I mostly work in 2010, so the testing is not as thorough as I'd like. If you can explain the issue you are having (steps you took to put the script in place), I may be able to help. Thanks, Kyle Hi, Draxtor. I have tested this in 2007, but I mostly work in 2010, so the testing is not as thorough as I’d like. If you can explain the issue you are having (steps you took to put the script in place), I may be able to help.

Thanks,
Kyle

]]>
By: Draxtor http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-109806 Draxtor Sun, 31 Oct 2010 17:45:27 +0000 http://www.endusersharepoint.com/?p=10441#comment-109806 I tried this on Moss 2007 and it doesn't work. Anyone try it on Moss 2007? I tried this on Moss 2007 and it doesn’t work. Anyone try it on Moss 2007?

]]>
By: Christophe http://www.endusersharepoint.com/2010/10/28/wp-tabify-transform-a-sharepoint-web-part-zone-into-tabs/comment-page-1/#comment-109653 Christophe Sat, 30 Oct 2010 08:32:42 +0000 http://www.endusersharepoint.com/?p=10441#comment-109653 No need for advanced googling skills, just type SharePoint Tabs and the first result will give you the Easy Tabs :-) (not the latest version unfortunately). I think your comment is important for the readers: if you already use jQuery UI on the site, then it's natural to keep the tabs in line with the design. If not, then you'd better think it twice before adding several hundreds kb of code to the page. btw are you the same guy who used to teach SharePoint karate? No need for advanced googling skills, just type SharePoint Tabs and the first result will give you the Easy Tabs :-) (not the latest version unfortunately).
I think your comment is important for the readers: if you already use jQuery UI on the site, then it’s natural to keep the tabs in line with the design. If not, then you’d better think it twice before adding several hundreds kb of code to the page.
btw are you the same guy who used to teach SharePoint karate?

]]>