<?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>Cihan Topcu &#187; MOOTOOLS</title>
	<atom:link href="http://www.cihantopcu.com/category/mootools/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cihantopcu.com</link>
	<description>notlar</description>
	<lastBuildDate>Mon, 18 Jul 2011 00:16:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Easy javascript AJAX with Mootools</title>
		<link>http://www.cihantopcu.com/easy-javascript-ajax-with-mootools.html</link>
		<comments>http://www.cihantopcu.com/easy-javascript-ajax-with-mootools.html#comments</comments>
		<pubDate>Sat, 28 Mar 2009 12:34:04 +0000</pubDate>
		<dc:creator>Cihan Topcu</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[MOOTOOLS]]></category>
		<category><![CDATA[TUTORIALS]]></category>

		<guid isPermaLink="false">http://www.cihantopcu.com/?p=39</guid>
		<description><![CDATA[<p>We most used Ajax requests the following snippet of code will make your life easier. Mootools &#8220;Request&#8221; function is used in this code. The next article in this function we&#8217;ll see how ASP.NET.</p> Sensei = {}; Sensei.Send = function(URL, fName, prms, retryCount, OnComplete) { if (retryCount == null) retryCount = 0; var jsonRequest = [...]]]></description>
			<content:encoded><![CDATA[<p>We most used Ajax requests the following snippet of code will make your life easier. Mootools &#8220;Request&#8221; function is used in this code. The next article in this function we&#8217;ll see how ASP.NET.</p>
<pre name="code" class="js">
Sensei = {};
Sensei.Send = function(URL, fName, prms, retryCount, OnComplete) {
	if (retryCount == null) retryCount = 0;
	var jsonRequest = new Request(
		{
                'encoding' : 'utf-8',
		method: 'post',
		url: URL,
		onComplete:  OnComplete,
		onFailure: function(){
					if(retryCount&lt;3)
						Sensei.Send(URL, fName, prms, OnComplete, retryCount++);
		},
       }).send('m=' + fName + '&amp;' + prms);
};</pre>
<p><strong>How to use :</strong></p>
<pre class="js">Sensei.send("service/serviceurl.ashx","doIt","cId=5&amp;bId=5",0, function(result){
      alert(result);
});</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.cihantopcu.com/easy-javascript-ajax-with-mootools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools kullanarak kolay javascript AJAX</title>
		<link>http://www.cihantopcu.com/mootools-kullanarak-kolay-javascript-ajax.html</link>
		<comments>http://www.cihantopcu.com/mootools-kullanarak-kolay-javascript-ajax.html#comments</comments>
		<pubDate>Thu, 26 Mar 2009 17:23:33 +0000</pubDate>
		<dc:creator>Cihan Topcu</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[MOOTOOLS]]></category>
		<category><![CDATA[TUTORIALS]]></category>

		<guid isPermaLink="false">http://www.cihantopcu.com/?p=35</guid>
		<description><![CDATA[<p>Bolca kullanığımız AJAX requestleri (post) için aşağıdaki kod parçası hayatınızı kolaylaştıracaktır. Mootools &#8220;Request&#8221; fonksiyonu kullanılmaktadır. Daha sonraki yazılarda bu fonksiyonu ASP.NET ile nasıl kullanabileceğimizi göreceğiz.</p> Sensei = {}; Sensei.Send = function(URL, fName, prms, retryCount, OnComplete) { if (retryCount == null) retryCount = 0; var jsonRequest = new Request( { 'encoding' : 'utf-8', method: 'post', [...]]]></description>
			<content:encoded><![CDATA[<p>Bolca kullanığımız AJAX requestleri (post) için aşağıdaki kod parçası hayatınızı kolaylaştıracaktır. Mootools &#8220;Request&#8221; fonksiyonu kullanılmaktadır. Daha sonraki yazılarda bu fonksiyonu ASP.NET ile nasıl kullanabileceğimizi göreceğiz.</p>
<pre name="code" class="js">
Sensei = {};
Sensei.Send = function(URL, fName, prms, retryCount, OnComplete) {
	if (retryCount == null) retryCount = 0;
	var jsonRequest = new Request(
		{
                'encoding' : 'utf-8',
		method: 'post',
		url: URL,
		onComplete:  OnComplete,
		onFailure: function(){
					if(retryCount&lt;3)
						Sensei.Send(URL, fName, prms, OnComplete, retryCount++);
		},
       }).send('m=' + fName + '&amp;' + prms);
};</pre>
<p>Kullanımı :</p>
<pre class="js">

Sensei.send("service/serviceurl.ashx","doIt","cId=5&#038;bId=5",0, function(result){
      alert(result);
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.cihantopcu.com/mootools-kullanarak-kolay-javascript-ajax.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Select box styling with mootools (fake combo)</title>
		<link>http://www.cihantopcu.com/select-box-styling-with-mootools-fake-combo.html</link>
		<comments>http://www.cihantopcu.com/select-box-styling-with-mootools-fake-combo.html#comments</comments>
		<pubDate>Mon, 23 Mar 2009 17:44:17 +0000</pubDate>
		<dc:creator>Cihan Topcu</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MOOTOOLS]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.cihantopcu.com/?p=30</guid>
		<description><![CDATA[<p>As you know, &#8216;select box&#8217; is a special control and its style cannot be changed very much. For example the height property can be changed in Firefox, but it can&#8217;t be changed in IE. Instead of creating a formal select box, our aim is to create a virtual select box whose properties can be [...]]]></description>
			<content:encoded><![CDATA[<p>As you know, &#8216;select box&#8217; is a special control and its style cannot be changed very much. For example the height property can be changed in Firefox, but it can&#8217;t be changed in IE. Instead of creating a formal select box, our aim is to create a virtual select box whose properties can be adjusted. It should only include HTML codes, so it will give the same result in all browsers.</p>
<p>This select box also changes all the select boxes automatically when you add JS and CSS into the page. Using this component is totaly up to your talent.</p>
<p>Working Model: It scans all the select boxes in your page. It hides adding the &#8220;Multiple&#8221; tag. It inserts a &lt;div&gt; into its location and shows the real select box when it is clicked that you made &#8220;Multiple&#8221;. Thus you can select the items in your real select box.</p>
<p><img class="alignnone size-full wp-image-27" title="combo1" src="http://www.cihantopcu.com/wp-content/uploads/2009/03/combo1.gif" alt="combo1" width="496" height="405" /></p>
<p>Working Example : <a title="Fake Combo" href="http://www.cihantopcu.com/samples/fakecombo/index.html" target="_blank">http://www.cihantopcu.com/samples/fakecombo/index.html</a></p>
<p>For download :  <a href="http://www.cihantopcu.com/samples/fakecombo/fakecombo.rar">http://www.cihantopcu.com/samples/fakecombo/fakecombo.rar</a></p>
<p>This control based to <a href="http://www.cult-f.net/2007/12/14/elselect/" target="_blank">http://www.cult-f.net/2007/12/14/elselect/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cihantopcu.com/select-box-styling-with-mootools-fake-combo.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools ile özel select box (fake combo)</title>
		<link>http://www.cihantopcu.com/mootools-ile-ozel-select-box-fake-combo.html</link>
		<comments>http://www.cihantopcu.com/mootools-ile-ozel-select-box-fake-combo.html#comments</comments>
		<pubDate>Mon, 23 Mar 2009 14:57:51 +0000</pubDate>
		<dc:creator>Cihan Topcu</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MOOTOOLS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[select box]]></category>

		<guid isPermaLink="false">http://www.cihantopcu.com/?p=26</guid>
		<description><![CDATA[<p>Bildiğiniz gibi select box özel bir kontroldür ve görünümü çok fazla değiştirilemez. Örneğin &#8220;heigth&#8221; özelliği firefox da değişmesine rağmen ie de değişmez. Amacımız select box ların yerine tüm görsel özellikleriyle oynayabileceğimiz, sadece html kodlarından oluştuğu için tüm browser larda aynı sonucu veren sanal select box oluşturmaktır. Öyle bir select box ki js yi ve [...]]]></description>
			<content:encoded><![CDATA[<p>Bildiğiniz gibi select box özel bir kontroldür ve görünümü çok fazla değiştirilemez. Örneğin &#8220;heigth&#8221; özelliği firefox da değişmesine rağmen ie de değişmez. Amacımız select box ların yerine tüm görsel özellikleriyle oynayabileceğimiz, sadece html kodlarından oluştuğu için tüm browser larda aynı sonucu veren <span style="text-decoration: underline;">sanal select box</span> oluşturmaktır. Öyle bir select box ki js yi ve css i sayfaya eklediğinizde tüm select box ları otomatik değiştiriyor. Yerleştirmek sizin yeteneğinize kalmış.</p>
<p>Çalışma şekli : Sayfanızda bulunan tüm select box ları tarıyor, &#8220;multiple&#8221; tag ı ekleyerek gizliyor. Bulunduğu konuma &lt;div&gt; ekliyor ve tıklandığında &#8220;multiple&#8221; hale getirdiğiniz gerçek select box unuzu gösteriyor. Böylece gerçek select box unuzdaki item larınızı seçiyorsunuz.</p>
<p><img class="alignnone size-full wp-image-27" title="combo1" src="http://www.cihantopcu.com/wp-content/uploads/2009/03/combo1.gif" alt="combo1" width="496" height="405" /></p>
<p>Çalışan örnek için : <a title="Fake Combo" href="http://www.cihantopcu.com/samples/fakecombo/index.html" target="_blank">http://www.cihantopcu.com/samples/fakecombo/index.html</a></p>
<p>İndirmek için :  <a href="http://www.cihantopcu.com/samples/fakecombo/fakecombo.rar">http://www.cihantopcu.com/samples/fakecombo/fakecombo.rar</a></p>
<p>Bu kontrol <a href="http://www.cult-f.net/2007/12/14/elselect/" target="_blank">http://www.cult-f.net/2007/12/14/elselect/</a> adresindeki kontrol optimize edilerek yeniden yazılmıştır.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cihantopcu.com/mootools-ile-ozel-select-box-fake-combo.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

