<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Notes from Ordinary Sharepoint User</title>
	<atom:link href="http://sherpoin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sherpoin.wordpress.com</link>
	<description>Just another blog about Sharepoint (WSS 3)</description>
	<lastBuildDate>Wed, 17 Feb 2010 03:00:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sherpoin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Notes from Ordinary Sharepoint User</title>
		<link>http://sherpoin.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sherpoin.wordpress.com/osd.xml" title="Notes from Ordinary Sharepoint User" />
	<atom:link rel='hub' href='http://sherpoin.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Add Context Menu using Javascript in CEWP</title>
		<link>http://sherpoin.wordpress.com/2010/02/17/add-context-menu-using-javascript-in-cewp/</link>
		<comments>http://sherpoin.wordpress.com/2010/02/17/add-context-menu-using-javascript-in-cewp/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 02:57:46 +0000</pubDate>
		<dc:creator>buruhti</dc:creator>
				<category><![CDATA[Content Editor Webpart]]></category>
		<category><![CDATA[CEWP]]></category>
		<category><![CDATA[Context Menu]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://sherpoin.wordpress.com/?p=6</guid>
		<description><![CDATA[Add Context Menu using Javascript in CEWP (Content Editor Webpart) Steps: Add CEWP, add set hidden in layout properties. Put below script in source editor: &#60;script type=&#8221;text/javascript&#8221;&#62; function Custom_AddDocLibMenuItems(m, ctx) { var strDisplayText; var strAction; var strImagePath; var otype = currentItemFSObjType = GetAttributeFromItemTable(itemTable, &#8220;OType&#8221;, &#8220;FSObjType&#8221;); var fileType=GetAttributeFromItemTable(itemTable, &#8220;Ext&#8221;, &#8220;FileType&#8221;); fileType=fileType.toLowerCase(); if (otype != 1) { [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sherpoin.wordpress.com&amp;blog=11857374&amp;post=6&amp;subd=sherpoin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3><strong>Add Context Menu using Javascript in CEWP (Content Editor Webpart)</strong></h3>
<h4><strong>Steps:</strong></h4>
<ul>
<li>Add CEWP, add set hidden in layout properties.</li>
</ul>
<ul>
<li>Put below script in source editor:</li>
</ul>
<p><span style="color:#808080;">&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
function Custom_AddDocLibMenuItems(m, ctx) {<br />
var strDisplayText;<br />
var strAction;<br />
var strImagePath;<br />
var otype = currentItemFSObjType =  GetAttributeFromItemTable(itemTable, &#8220;OType&#8221;, &#8220;FSObjType&#8221;);<br />
var fileType=GetAttributeFromItemTable(itemTable, &#8220;Ext&#8221;, &#8220;FileType&#8221;);<br />
fileType=fileType.toLowerCase();<br />
if (otype != 1) { // 1=folder<br />
if (fileType == &#8220;doc&#8221;) {<br />
var itemId = GetAttributeFromItemTable(itemTable, &#8220;ItemId&#8221;, &#8220;Id&#8221;);<br />
var listId = ctx.listName;<br />
strDisplayText = &#8220;Publish Dokumen&#8221;;<br />
strImagePath = &#8220;/_layouts/IMAGES/COMCLOSE.gif&#8221;;<br />
strAction = &#8216;window.navigate(&#8220;&#8216; + ctx.HttpRoot +  &#8216;/_layouts/PublishDoc.aspx?needapproval=yes&amp;ListID=&#8217; + listId +  &#8216;&amp;ID=&#8217; + itemId + &#8216;&#8221;)&#8217;;<br />
// Add menu item<br />
CAMOpt(m, strDisplayText, strAction, strImagePath);<br />
}<br />
strDisplayText = &#8220;Share ke Email&#8221;;<br />
strImagePath = &#8220;/_layouts/IMAGES/SENDTO.gif&#8221;;<br />
strAction = &#8216;window.navigate(&#8220;&#8216; + ctx.HttpRoot +  &#8216;/_layouts/SharetoEmail.aspx?ListID=&#8217; + listId + &#8216;&amp;ID=&#8217; + itemId +  &#8216;&#8221;)&#8217;;<br />
// Add menu item<br />
CAMOpt(m, strDisplayText, strAction, strImagePath);<br />
// add a separator to the menu<br />
CAMSep(m);<br />
}<br />
return false;<br />
}<br />
&lt;/script&gt;</span></p>
<p><span style="color:#808080;"><br />
</span></p>
<h4><strong><span style="color:#808080;"><span style="color:#000000;">Script</span></span> Description:</strong></h4>
<ul>
<li>Adding 2 context menu: &#8220;publish dokumen&#8221; and &#8220;share ke email&#8221; by using built-in &#8220;Custom_AddDocLibMenuItems&#8221; function from file &#8220;CORE.JS&#8221;.</li>
<li>Using built-in &#8220;GetAttributeFromItemTable&#8221; function to get file extension , type (folder), and item ID. Besides that, there are many functionality that can use, we can see it in file &#8220;CORE.JS&#8221; that resides in &#8220;C:\Program   Files\Common Files\Microsoft Shared\web server    extensions\12\TEMPLATE\LAYOUTS\1033&#8243;.</li>
</ul>
<p><strong><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sherpoin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sherpoin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sherpoin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sherpoin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sherpoin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sherpoin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sherpoin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sherpoin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sherpoin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sherpoin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sherpoin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sherpoin.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sherpoin.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sherpoin.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sherpoin.wordpress.com&amp;blog=11857374&amp;post=6&amp;subd=sherpoin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sherpoin.wordpress.com/2010/02/17/add-context-menu-using-javascript-in-cewp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/03c7f378dad7a9003922abf79a852bf0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">buruhti</media:title>
		</media:content>
	</item>
		<item>
		<title>Tips Memanfaatkan AutoRepublish di Excell untuk menampilkan Chart di Sharepoint</title>
		<link>http://sherpoin.wordpress.com/2010/02/05/tips-memanfaatkan-autorepublish-di-excell-untuk-menampilkan-chart-di-sharepoint/</link>
		<comments>http://sherpoin.wordpress.com/2010/02/05/tips-memanfaatkan-autorepublish-di-excell-untuk-menampilkan-chart-di-sharepoint/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 10:14:49 +0000</pubDate>
		<dc:creator>buruhti</dc:creator>
				<category><![CDATA[Chart]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excell]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://sherpoin.wordpress.com/?p=4</guid>
		<description><![CDATA[Guest Author: William Hakos Most organizations have been using Excel to do analysis, create charts and design dashboards for years, yet there is a lot of functionality in Excel that is not easily accessed in SharePoint, sometimes even for those with Excel Services. The question becomes, how does one translate their work from Excel to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sherpoin.wordpress.com&amp;blog=11857374&amp;post=4&amp;subd=sherpoin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Guest Author:  William Hakos</strong></p>
<p>Most organizations have been using Excel to do analysis,  create  charts and design dashboards for years, yet there is a lot of   functionality in Excel that is not easily accessed in SharePoint,  sometimes  even for those with Excel Services. The question becomes, how  does one  translate their work from Excel to SharePoint? This means  more than linking to  an Excel workbook in a Document Library; rather,  it requires displaying the  charts and dashboards directly within  SharePoint.</p>
<p>For this process to work, there are several things that need  to be  set up in advance:</p>
<ul>
<li>SharePoint site on which to create the dashboard</li>
<li>Document library with required checkout and  versioning turned off</li>
<li>Excel workbooks containing the charts/tables/dashboards  to publish</li>
</ul>
<h3>Part 1: Publishing  Excel to SharePoint</h3>
<p>Once a SharePoint site and document library are set up, open  the  Excel workbook to the first chart, table or dashboard to publish.</p>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-01.png" alt="Excel AutoRepublishing" width="400" height="349" /></p>
<p>The next step is to select the cells to publish, but it is  important  to note that you must select all the cells that are underneath the   chart (in this case note the range of B6 to Q19), rather than selecting  the  chart itself. With that in mind, follow the steps below:</p>
<ul>
<li>Highlight the cells to publish</li>
<li>Go to the Microsoft Office Icon and choose Save  As</li>
<li>Select Other Formats</li>
</ul>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-02.png" alt="Excel AutoRepublishing" width="300" height="353" /></p>
<ul>
<li>Change the Save as type: to Web Page</li>
<li>Name the file and confirm that it is pointing to  the correct  document library</li>
</ul>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-03.png" alt="Excel AutoRepublishing" width="400" height="255" /></p>
<p>The next step is important, as there is a distinction  between  Publishing and Saving, and between publishing only what you have   selected, rather than the whole workbook. To publish your selection,  follow the  steps below:</p>
<ul>
<li>Choose Selection (not Entire Workbook)</li>
<li>Click on Publish (not Save)</li>
</ul>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-04.png" alt="Excel AutoRepublishing" width="400" height="266" /></p>
<p>A dialogue box will pop up, and you should consider whether  you want  this information to be updated in SharePoint whenever changes are made   to the underlying chart in Excel.</p>
<ul>
<li>If you do not want the information to be  automatically updated,  click on Publish.</li>
<li>If you do want the information be automatically  updated, select  “AutoRepublish every time this workbook is saved” then click on   Publish.</li>
</ul>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-05.png" alt="Excel AutoRepublishing" width="400" height="251" /></p>
<p>Once you click Publish, the Web Page version of that chart  will be  saved to the document library.   If you selected AutoRepublish, you will  receive the following message  every time this workbook is re-saved.    Select Enable the AutoRepublish feature and the chart will be   republished the moment you hit OK.</p>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-06.png" alt="Excel AutoRepublishing" width="400" height="103" /></p>
<h3>Part 2: Creating our  SharePoint Dashboard</h3>
<p>Now that the Excel Chart is published as a web page, the  next task  is to display the chart on your site.   For this, you must use the Page  Viewer Web Part, following the steps  below:</p>
<ul>
<li>Go to Site Actions -&gt; Edit Page</li>
<li>Add a Web Part -&gt; Page Viewer Web Part</li>
<li>Input the link to the web page published from  Excel</li>
<li>Set the height and width to display the chart
<ul>
<li>Do this under Appearance when editing the web  part</li>
</ul>
</li>
</ul>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-07.png" alt="Excel AutoRepublishing" width="400" height="249" /></p>
<p>Repeat the steps above for all  the charts/cell ranges that you would  like to display on your SharePoint  Dashboard.  Below is an example of  what  this will look like as you add charts.</p>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-08.png" alt="Excel AutoRepublishing" width="400" height="304" /></p>
<p>Congratulations, you now have a  great technique for creating  dashboards and displaying information on  SharePoint while doing all the  work in Excel.</p>
<h3>A few additional tips:</h3>
<ul>
<li>Hide  the title and border for the web part by setting the Chrome  Type to None under  Appearance when editing the web part and use a  Content Editor Web Part to  create a more attractive look for your  dashboard/chart titles.</li>
<li>Charts  retain their size when published from Excel to a web page,  so make sure your  charts are appropriately sized and uniform for visual  appeal.
<ul>
<li>Hold Alt when resizing a chart to fit it exactly  to the edge of the  cells underneath, making comparing sizes as well as  publishing  selections easier.</li>
</ul>
</li>
<li>If  you do not want to be constrained by the Web Part zones, create  the whole  dashboard in Excel first and then publish it as one complete  web page; then the  SharePoint dashboard need only consist of one Page  Viewer Web Part.</li>
<li>You  can choose the entire sheet as the selection to be published if  a selection of  cells is not chosen.</li>
<li>Since  the cells are displayed in Web part form, combine this  technique with other  solutions you have learned for manipulating the  appearance of Web Parts to  create a more attractive dashboard (for  example, try combining this with the  Easy Tabs solution from Path to  SharePoint).</li>
<li>This  process has the advantage of using only built-in Office tools,  which is a  comfort to risk managers.</li>
</ul>
<p><img src="http://www.endusersharepoint.com/blog/wp-content/uploads/Authors/WilliamHakos.png" alt="WilliamHakos" width="100" height="127" align="left" /><strong>Guest  Author: William Hakos</strong></p>
<p>Bill Hakos  started in the Actuarial department of Northwestern  Mutual as an Actuarial  Associate before moving into an Analysis  Services role in the Delivery,  Excellence &amp; Quality division  of  Information  Systems.  Being the youngest member of  the team at the  time, he was deemed the most likely to know about Web 2.0 and  was  appointed a SharePoint Team Lead.   Bill has enjoyed the opportunity to  explore SharePoint and encourage  adoption.  When not enjoying  scintillating  SharePoint discussions, Bill likes to spend time with  books, friends, his wife,  and her dog.  Not necessarily in that  order.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sherpoin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sherpoin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sherpoin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sherpoin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sherpoin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sherpoin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sherpoin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sherpoin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sherpoin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sherpoin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sherpoin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sherpoin.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sherpoin.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sherpoin.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sherpoin.wordpress.com&amp;blog=11857374&amp;post=4&amp;subd=sherpoin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sherpoin.wordpress.com/2010/02/05/tips-memanfaatkan-autorepublish-di-excell-untuk-menampilkan-chart-di-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/03c7f378dad7a9003922abf79a852bf0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">buruhti</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-01.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-02.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-03.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-04.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-05.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-06.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-07.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/08/2009-08-16-ExcelAutoRepublishing-08.png" medium="image">
			<media:title type="html">Excel AutoRepublishing</media:title>
		</media:content>

		<media:content url="http://www.endusersharepoint.com/blog/wp-content/uploads/Authors/WilliamHakos.png" medium="image">
			<media:title type="html">WilliamHakos</media:title>
		</media:content>
	</item>
	</channel>
</rss>
