<?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>Code Jutsu &#187; Extjs</title>
	<atom:link href="http://www.montolz.com/category/extjs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.montolz.com</link>
	<description>The Best Game Cheats Website</description>
	<lastBuildDate>Thu, 06 Oct 2011 10:20:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Run Extjs And Jquery On The Same Page</title>
		<link>http://www.montolz.com/run-extjs-and-jquery-on-the-same-page/</link>
		<comments>http://www.montolz.com/run-extjs-and-jquery-on-the-same-page/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 00:19:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Extjs]]></category>

		<guid isPermaLink="false">http://www.montolz.com/?p=242</guid>
		<description><![CDATA[Are you extjs programmer? Are you jquery programmer? Don&#8217;t worry, you can run both of them on same page. I will give you some tips to avoid a crashes. Below is the part of code: &#60;html&#62; &#60;head&#62; &#60;link href="css/extjs/resources/css/ext-all.css" rel="stylesheet" type="text/css" /&#62; //include your jquery library &#60;script type="text/javascript" src="js/jquery.js"&#62;&#60;/script&#62; //include adapter for using extjs and [...]]]></description>
			<content:encoded><![CDATA[<p>Are you extjs programmer? Are you jquery programmer? Don&#8217;t worry, you can run both of them on same page. I will give you some tips to avoid a crashes. Below is the part of code:<span id="more-242"></span></p>
<pre>&lt;html&gt;
  &lt;head&gt;

    &lt;link href="css/extjs/resources/css/ext-all.css" rel="stylesheet" type="text/css" /&gt;
//include your jquery library
    &lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt;
//include adapter for using extjs and jquery on same page
    &lt;script type="text/javascript" src="js/extjs/adapters/ext-jquery-adapter.js"&gt;&lt;/script&gt;
    &lt;script type="text/javascript" src="js/extjs/ext-all.js"&gt;&lt;/script&gt;

    &lt;script type="text/javascript"&gt;
      $().ready(function(){
        $('#askme').click(function(){
          Ext.Messagebox.confirm('Pertanyaan', 'Apakah anda suka framework.web.id?');
        })
      })
    &lt;/script&gt;

  &lt;/head&gt;
  &lt;body&gt;
    &lt;button id="askme"&gt;Ask Me!&lt;/button&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre>
<p>The important code is below :</p>
<pre>&lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/extjs/adapters/ext-jquery-adapter.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/extjs/ext-all.js"&gt;&lt;/script&gt;</pre>
<p>They should be sequentially. Tyr it. Done !</p>
<p>You can run extjs with other javascript framework such as prototype, jquery, yui. See include-order.txt file at extjs root directory and try it same as my way above.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.montolz.com/run-extjs-and-jquery-on-the-same-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extjs : AutoComplete Textfield</title>
		<link>http://www.montolz.com/extjs-auto-suggest-textfield/</link>
		<comments>http://www.montolz.com/extjs-auto-suggest-textfield/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 00:19:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Extjs]]></category>

		<guid isPermaLink="false">http://www.montolz.com/?p=206</guid>
		<description><![CDATA[In this section i want to share about how to make textfield in extjs with autocomplete. I think this tutorial very simple but i hope this tutorial can be useful for newbie like me. You can create textfield with autocomplete from combo box. If you can use combo box, i think it&#8217;s very easy to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In this section i want to share about how to make textfield in extjs with autocomplete. I think this tutorial very simple but i hope this tutorial can be useful for newbie like me. You can create textfield with autocomplete from combo box. If you can use combo box, i think it&#8217;s very easy to create textfield  with auto suggest. Below is part of code to make combo box.</p>
<p><code>var combo = new Ext.form.ComboBox({<br />
store: store,<br />
displayField:'state',<br />
typeAhead: true,<br />
mode: 'local',<br />
triggerAction: 'all',<br />
emptyText:'Select a state...',<br />
selectOnFocus:true,<br />
hideTrigger: true,//hide combobox trigger, so the combobox looks like textfield<br />
width: 250,<br />
renderTo: 'autocomplete'<br />
});</code><br />
You just add hideTrigger: true to get textfield with autocomplete. It&#8217;s just easy !</p>
<p>You can download source code <a href="http://www.ziddu.com/download/9675453/combo-auto-suggest.rar.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.montolz.com/extjs-auto-suggest-textfield/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced)

Served from: www.montolz.com @ 2012-02-05 14:31:14 -->
