<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Adding Suggestions to the Sharepoint search box</title>
	<atom:link href="http://davecavins.com/2009/04/adding-suggestiong-to-the-sharepoint-search-box/feed/" rel="self" type="application/rss+xml" />
	<link>http://davecavins.com/2009/04/adding-suggestiong-to-the-sharepoint-search-box/</link>
	<description>web design, SharePoint customization &#38; random stuff</description>
	<lastBuildDate>Fri, 30 Dec 2011 14:18:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Bryan</title>
		<link>http://davecavins.com/2009/04/adding-suggestiong-to-the-sharepoint-search-box/comment-page-1/#comment-368</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Wed, 07 Jul 2010 01:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://davecavins.com/?p=46#comment-368</guid>
		<description>Hi there...
1) How do I change searchfield.js to include two separate boxes referencing two separate values...
2) How do I change searchfield.js to search a database table and column...

Thank you for any input</description>
		<content:encoded><![CDATA[<p>Hi there&#8230;<br />
1) How do I change searchfield.js to include two separate boxes referencing two separate values&#8230;<br />
2) How do I change searchfield.js to search a database table and column&#8230;</p>
<p>Thank you for any input</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://davecavins.com/2009/04/adding-suggestiong-to-the-sharepoint-search-box/comment-page-1/#comment-220</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Thu, 04 Feb 2010 05:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://davecavins.com/?p=46#comment-220</guid>
		<description>&quot;2. If needed hide the existing search box (I left mine, and it still works fine). &quot;

any clue on how to do this? it would be much appreciated.</description>
		<content:encoded><![CDATA[<p>&#8220;2. If needed hide the existing search box (I left mine, and it still works fine). &#8221;</p>
<p>any clue on how to do this? it would be much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davecavins</title>
		<link>http://davecavins.com/2009/04/adding-suggestiong-to-the-sharepoint-search-box/comment-page-1/#comment-134</link>
		<dc:creator>davecavins</dc:creator>
		<pubDate>Thu, 12 Nov 2009 15:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://davecavins.com/?p=46#comment-134</guid>
		<description>@Karen the code got stripped out of you comment but I think the ID could be causing the problem.  When I tried to put two search boxes on the page with the same ID I got this error from SharePoint :   &quot;An error occurred during the processing of . The ID &#039;searchbox2&#039; is already used by another control.&quot; 

This is the code I use that is working:
 [sourcecode]
&lt;div id=&quot;searchLayout&quot;&gt;
&lt;SPSWC:SearchBoxEx 
					id=&quot;searchbox2&quot; 
					RegisterStyles=&quot;false&quot; 
					TextBeforeTextBox=&quot;&quot; 
					TextBoxWidth=&quot;150&quot; 
					GoImageUrl=&quot;images/button.gif&quot; 
					GoImageActiveUrl=&quot;&quot; 
					GoImageUrlRTL=&quot;&quot; 
					GoImageActiveUrlRTL=&quot;&quot;  
					UseSiteDefaults=&quot;true&quot; 
					
					DropDownMode=&quot;HideScopeDD&quot; 
					SuppressWebPartChrome=&quot;true&quot; 
					runat=&quot;server&quot; WebPart=&quot;true&quot; 
					__WebPartId=&quot;{0043945F-2D2B-4A02-8510-CED13B6F04DF}&quot;/&gt;
					
					&lt;/div&gt;

[/sourcecode]</description>
		<content:encoded><![CDATA[<p>@Karen the code got stripped out of you comment but I think the ID could be causing the problem.  When I tried to put two search boxes on the page with the same ID I got this error from SharePoint :   &#8220;An error occurred during the processing of . The ID &#8216;searchbox2&#8242; is already used by another control.&#8221; </p>
<p>This is the code I use that is working:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;div id=&quot;searchLayout&quot;&gt;
&lt;SPSWC:SearchBoxEx
					id=&quot;searchbox2&quot;
					RegisterStyles=&quot;false&quot;
					TextBeforeTextBox=&quot;&quot;
					TextBoxWidth=&quot;150&quot;
					GoImageUrl=&quot;images/button.gif&quot;
					GoImageActiveUrl=&quot;&quot;
					GoImageUrlRTL=&quot;&quot;
					GoImageActiveUrlRTL=&quot;&quot;
					UseSiteDefaults=&quot;true&quot; 

					DropDownMode=&quot;HideScopeDD&quot;
					SuppressWebPartChrome=&quot;true&quot;
					runat=&quot;server&quot; WebPart=&quot;true&quot;
					__WebPartId=&quot;{0043945F-2D2B-4A02-8510-CED13B6F04DF}&quot;/&gt;

					&lt;/div&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karen</title>
		<link>http://davecavins.com/2009/04/adding-suggestiong-to-the-sharepoint-search-box/comment-page-1/#comment-131</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Wed, 11 Nov 2009 13:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://davecavins.com/?p=46#comment-131</guid>
		<description>Hi,

I am trying to add a small custom search box to a page I&#039;m working on. I have added the following code to my asp:

&lt;a href=&quot;SD06736D6_Submit()&quot; rel=&quot;nofollow&quot;&gt;
GO&lt;/a&gt;






This has positioned the search box where I want it and it looks fine, however when I click &quot;Go&quot; nothing happens. I also have a custom small search box on my navigation bar, I&#039;m using the exact same id for this one. Do you think this is the problem? Do I need different ID&#039;s for each search box on the page?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am trying to add a small custom search box to a page I&#8217;m working on. I have added the following code to my asp:</p>
<p><a href="SD06736D6_Submit()" rel="nofollow"><br />
GO</a></p>
<p>This has positioned the search box where I want it and it looks fine, however when I click &#8220;Go&#8221; nothing happens. I also have a custom small search box on my navigation bar, I&#8217;m using the exact same id for this one. Do you think this is the problem? Do I need different ID&#8217;s for each search box on the page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Cavins &#187; Blog Archive &#187; Adding Suggestions to the Sharepoint search box : Part 2</title>
		<link>http://davecavins.com/2009/04/adding-suggestiong-to-the-sharepoint-search-box/comment-page-1/#comment-117</link>
		<dc:creator>Dave Cavins &#187; Blog Archive &#187; Adding Suggestions to the Sharepoint search box : Part 2</dc:creator>
		<pubDate>Wed, 28 Oct 2009 17:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://davecavins.com/?p=46#comment-117</guid>
		<description>[...] In Part 1 of this post we used a simple javascript to display suggestions on a custom search box. After I wrote that post I was thinking it would make more sense to read the suggestions from a list instead of a JavaScript file. This post will explain how to setup the list and edit the JavaScript to read the suggestions from a list. The idea is that an administrator could manage the list and help guide users toward specific information instead of getting numerous un-related results like in those commercials for bing. [...]</description>
		<content:encoded><![CDATA[<p>[...] In Part 1 of this post we used a simple javascript to display suggestions on a custom search box. After I wrote that post I was thinking it would make more sense to read the suggestions from a list instead of a JavaScript file. This post will explain how to setup the list and edit the JavaScript to read the suggestions from a list. The idea is that an administrator could manage the list and help guide users toward specific information instead of getting numerous un-related results like in those commercials for bing. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

