<?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/"
	>

<channel>
	<title>rarecore development &#187; ajax</title>
	<atom:link href="http://blog.rarecore.eu/category/xajax/ajax-xajax/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.rarecore.eu</link>
	<description>the blog that matters...</description>
	<lastBuildDate>Mon, 25 Jan 2010 19:04:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>XAJAX Autocompleter V2</title>
		<link>http://blog.rarecore.eu/xajax-autocompleter-v2.html</link>
		<comments>http://blog.rarecore.eu/xajax-autocompleter-v2.html#comments</comments>
		<pubDate>Fri, 11 Sep 2009 14:11:32 +0000</pubDate>
		<dc:creator>Exi</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[rarecore]]></category>
		<category><![CDATA[technobase]]></category>
		<category><![CDATA[we are one]]></category>
		<category><![CDATA[xajax]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[autocompleter]]></category>

		<guid isPermaLink="false">http://blog.rarecore.eu/?p=372</guid>
		<description><![CDATA[It is often helpful to use an autocompleter on your website. Perhaps in search dialogs? An example is google on an extra search page.
I tested some free tools, but I had always the problem that there was no possibility to use two or more autocompleter on one page and to organize the dependency. E.g. insert [...]]]></description>
			<content:encoded><![CDATA[<p><a href="/demo/xajax_autocompleter_v2/" target="_blank"><img class="alignleft" title="rarecore autocompleter" src="/wp-content/uploads/2009/02/autocompleter.png" alt="rarecore autocompleter" width="285" height="111" /></a>It is often helpful to use an autocompleter on your website. Perhaps in search dialogs? An example is google on an extra search page.</p>
<p>I tested some free tools, but I had always the problem that there was no possibility to use two or more autocompleter on one page and to organize the dependency. E.g. insert a name of a country in the first textbox and in the second textbox insert a name of a city. On the city textbox you only want to see cities belonging to the inserted country – no other cities.</p>
<p>This problem was the reason why I developed my own autocompleter using xajax. This framework allows me to respond on the key events and select the values from the database. I could write my own functions and use any parameters.</p>
<p>I generated a textbox with a hidden div below which is calling a function on the onkeyup event by using xajax. In this test I mark the searched string with a span and on CSS I colored it blue. Additional I added a mouseover using CSS.</p>
<p><strong>Here you could download the second version of my autocompleter.</strong></p>
<p>Changes:<br />
 &#8211; Using the arrow keys to choose the correct value<br />
 &#8211; Performance Tuning</p>
<p><a href="/demo/xajax_autocompleter_v2/">Demo</a><br />
<span style="display:block; border: 1px solid #CCC; margin-left:4px; margin-right:4px; width:500px; height:60px">
<span style="display:block;float:left;margin-left:5px;margin-top:5px"><img src="http://blog.rarecore.eu/wp-content/plugins/downloads-manager/img/icons/default.gif" alt="http://blog.rarecore.eu/wp-content/plugins/downloads-manager/img/icons/default.gif" /></span >
<span style="display:block;float:left;margin-left:5px;margin-top:5px">
   <b>download:</b> <a href="http://blog.rarecore.eu/?file_id=2">Autocompleter v2</a> <small>(119.55KB)</small><br />
  <b>added:</b> 08/11/2009 <br />
  <b>clicks:</b> 1436 
</span >
</span >
<br style="clear:left" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rarecore.eu/xajax-autocompleter-v2.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Autocompleter using XAJAX</title>
		<link>http://blog.rarecore.eu/autocompleter-using-xajax.html</link>
		<comments>http://blog.rarecore.eu/autocompleter-using-xajax.html#comments</comments>
		<pubDate>Fri, 06 Feb 2009 12:12:20 +0000</pubDate>
		<dc:creator>Exi</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[rarecore]]></category>
		<category><![CDATA[technobase]]></category>
		<category><![CDATA[we are one]]></category>
		<category><![CDATA[xajax]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[autocompleter]]></category>

		<guid isPermaLink="false">http://blog.rarecore.eu/?p=238</guid>
		<description><![CDATA[ It is often helpful to use an autocompleter on your website. Perhaps in search dialogs? An example is google on an extra search page.
I tested some free tools, but I had always the problem that there was no possibility to use two or more autocompleter on one page and to organize the dependency. E.g. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.rarecore.eu/demo/xajax_autocompleter" target="_blank"><img class="alignleft" title="rarecore autocompleter" src="/wp-content/uploads/2009/02/autocompleter.png" alt="rarecore autocompleter" width="285" height="111" /></a> It is often helpful to use an autocompleter on your website. Perhaps in search dialogs? An example is <a href="http://www.google.com/webhp?complete=1" target="_blank">google</a> on an extra search page.</p>
<p>I tested some free tools, but I had always the problem that there was no possibility to use two or more autocompleter on one page and to organize the dependency. E.g. insert a name of a country in the first textbox and in the second textbox insert a name of a city. On the city textbox you only want to see cities belonging to the inserted country &#8211; no other cities.</p>
<p>This problem was the reason why I developed my own autocompleter using <a href="http://xajaxproject.org/" target="_blank">xajax</a>. This framework allows me to respond on the key events and select the values from the database. I could write my own functions and use any parameters.</p>
<p>I generated a textbox with a hidden div below which is calling a function on the onkeyup event by using xajax. In this test I mark the searched string with a span and on CSS I colored it blue. Additional I added a mouseover using CSS.</p>
<p><a href="http://blog.rarecore.eu/demo/xajax_autocompleter/" target="_blank"><del datetime="2009-09-11T17:48:06+00:00">Demo</del></a> <a href="/xajax-autocompleter-v2.html">*** NEW VERSION ***</a></p>
<div><span style="display:block; border: 1px solid #CCC; margin-left:4px; margin-right:4px; width:500px; height:60px">
<span style="display:block;float:left;margin-left:5px;margin-top:5px"><img src="http://blog.rarecore.eu/wp-content/plugins/downloads-manager/img/icons/default.gif" alt="http://blog.rarecore.eu/wp-content/plugins/downloads-manager/img/icons/default.gif" /></span >
<span style="display:block;float:left;margin-left:5px;margin-top:5px">
   <b>download:</b> <a href="http://blog.rarecore.eu/?file_id=2">Autocompleter v2</a> <small>(119.55KB)</small><br />
  <b>added:</b> 08/11/2009 <br />
  <b>clicks:</b> 1436 
</span >
</span >
<br style="clear:left" /></div>
<p>That&#8217;s all!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rarecore.eu/autocompleter-using-xajax.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
