<?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: 16 jQuery Plugins i used the most</title>
	<atom:link href="http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/</link>
	<description>PHP, JQUERY, JAVASCRIPT fun</description>
	<lastBuildDate>Wed, 01 Feb 2012 07:20:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kugutsumen</title>
		<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/comment-page-1/#comment-964</link>
		<dc:creator>Kugutsumen</dc:creator>
		<pubDate>Wed, 28 Sep 2011 14:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mahbubblog.com/?p=159#comment-964</guid>
		<description>I have a tutorial and a working demo with jqgrid access it here
http://blog.markmirandilla.com/2011/09/04/codeigniter-jqgrid-library/</description>
		<content:encoded><![CDATA[<p>I have a tutorial and a working demo with jqgrid access it here<br />
<a href="http://blog.markmirandilla.com/2011/09/04/codeigniter-jqgrid-library/" rel="nofollow">http://blog.markmirandilla.com/2011/09/04/codeigniter-jqgrid-library/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahbub</title>
		<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/comment-page-1/#comment-209</link>
		<dc:creator>Mahbub</dc:creator>
		<pubDate>Wed, 23 Dec 2009 05:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mahbubblog.com/?p=159#comment-209</guid>
		<description>You have to insert links in cells to do that like

&lt;pre&gt;
$(document).ready(function(){&lt;br /&gt;
jQuery(&quot;#user_grid&quot;).jqGrid({&lt;br /&gt;
url:&#039;&lt; ?php&lt;br /&gt;
echo site_url ( &quot;sales/leads/browse&quot; );&lt;br /&gt;
?&gt;&#039;,&lt;br /&gt;
datatype: &quot;json&quot;,&lt;br /&gt;
mtype : &quot;post&quot;,&lt;br /&gt;
colNames:[&#039;ID&#039;,&#039;Submitted&#039;,&#039;Contact Name&#039;, &#039;Company Name&#039;,&#039;Web site&#039;,&#039;Phone&#039;,&#039;Email&#039;,&#039;Active&#039;,&#039;Action&#039;],&lt;br /&gt;
colModel:[&lt;br /&gt;
{name:&#039;sales_lead_id&#039;,index:&#039;sales_lead_id&#039;, width:20}, &lt;br /&gt;
{name:&#039;submit_date&#039;,index:&#039;date_submitted&#039;, width:120}, &lt;br /&gt;
{name:&#039;contact&#039;, index:&#039;contact&#039;, width:150}, &lt;br /&gt;
{name:&#039;company&#039;, index:&#039;company_name&#039;, width:100},&lt;br /&gt;
{name:&#039;website&#039;, index:&#039;website&#039;, width:140},&lt;br /&gt;
{name:&#039;phone&#039;, index:&#039;phone&#039;, width:120},&lt;br /&gt;
{name:&#039;email&#039;, index:&#039;email&#039;, width:130},&lt;br /&gt;
{name:&#039;active&#039;, index:&#039;active&#039;, width:80}, &lt;br /&gt;
{name:&#039;act&#039;,index:&#039;act&#039;, sortable:false, width:60} &lt;br /&gt;
&lt;br /&gt;
],&lt;br /&gt;
rownumbers: false, &lt;br /&gt;
rowNum:10,&lt;br /&gt;
rowList:[10,20,30], &lt;br /&gt;
pager: jQuery(&#039;#pager2&#039;),&lt;br /&gt;
sortname: &#039;sales_lead_id&#039;,&lt;br /&gt;
autowidth: true, &lt;br /&gt;
height: &quot;100%&quot;, &lt;br /&gt;
viewrecords: true, &lt;br /&gt;
loadComplete: function(){&lt;br /&gt;
var ids = jQuery(&quot;#user_grid&quot;).getDataIDs(); &lt;br /&gt;
for(var i=0;i&lt;ids .length;i++){&lt;br /&gt;
var cl = ids[i];&lt;br /&gt;
be = &#039;&lt;div class=&quot;one_line&quot;&gt;&#039;&lt;br /&gt;
+&#039;&lt;a href=&quot;javascript:;&quot; onclick=&quot;view_leads(&#039;+ids[i]+&#039;);&quot; rel=&quot;nofollow&quot;&gt;&lt;span class=&quot;ui-icon ui-icon-newwin&quot;&gt;&lt;/span&gt;&lt;/a&gt;&#039;&lt;br /&gt;
+&#039;&lt;a href=&quot;javascript:;&quot; onclick=&quot;del_user(&#039;+ids[i]+&#039;);&quot; rel=&quot;nofollow&quot;&gt;&lt;span class=&quot;ui-icon ui-icon-closethick&quot;&gt;&lt;/span&gt;&lt;/a&gt;&#039;&lt;br /&gt;
+&#039;&lt;a href=&quot;javascript:;&quot; onclick=&quot;edit_user(&#039;+ids[i]+&#039;);&quot; rel=&quot;nofollow&quot;&gt;&lt;span class=&quot;ui-icon ui-icon-pencil&quot;&gt;&lt;/span&gt;&lt;/a&gt;&#039;&lt;br /&gt;
&lt;br /&gt;
+&#039;&#039;;&lt;br /&gt;
jQuery(&quot;#user_grid&quot;).setRowData(ids[i],{act:be}); &lt;br /&gt;
}&lt;br /&gt;
},&lt;br /&gt;
sortorder: &quot;desc&quot;,&lt;br /&gt;
jsonReader: { repeatitems : false, id: &quot;0&quot; }, &lt;br /&gt;
caption:&quot;Sales Leads Overview&quot;&lt;br /&gt;
}).navGrid(&#039;#pager2&#039;,{edit:false,add:false,del:false}); &lt;br /&gt;
});




Look around the  &lt;strong&gt;loadComplete&lt;/strong&gt; function which inserts the html links in the cell. Hope this helps.&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>You have to insert links in cells to do that like</p>
<pre>
$(document).ready(function(){
jQuery(&quot;#user_grid&quot;).jqGrid({
url:'&lt; ?php
echo site_url ( &quot;sales/leads/browse&quot; );
?&gt;',
datatype: &quot;json&quot;,
mtype : &quot;post&quot;,
colNames:['ID','Submitted','Contact Name', 'Company Name','Web site','Phone','Email','Active','Action'],
colModel:[
{name:'sales_lead_id',index:'sales_lead_id', width:20}, 
{name:'submit_date',index:'date_submitted', width:120}, 
{name:'contact', index:'contact', width:150}, 
{name:'company', index:'company_name', width:100},
{name:'website', index:'website', width:140},
{name:'phone', index:'phone', width:120},
{name:'email', index:'email', width:130},
{name:'active', index:'active', width:80}, 
{name:'act',index:'act', sortable:false, width:60} 

],
rownumbers: false, 
rowNum:10,
rowList:[10,20,30], 
pager: jQuery('#pager2'),
sortname: 'sales_lead_id',
autowidth: true, 
height: &quot;100%&quot;, 
viewrecords: true, 
loadComplete: function(){
var ids = jQuery(&quot;#user_grid&quot;).getDataIDs(); 
for(var i=0;i&lt;ids .length;i++){
var cl = ids[i];
be = '&lt;div class=&quot;one_line&quot;&gt;'
+'&lt;a href=&quot;javascript:;&quot; onclick=&quot;view_leads('+ids[i]+');&quot; rel=&quot;nofollow&quot;&gt;&lt;span class=&quot;ui-icon ui-icon-newwin&quot;&gt;&lt;/span&gt;&lt;/a&gt;'
+'&lt;a href=&quot;javascript:;&quot; onclick=&quot;del_user('+ids[i]+');&quot; rel=&quot;nofollow&quot;&gt;&lt;span class=&quot;ui-icon ui-icon-closethick&quot;&gt;&lt;/span&gt;&lt;/a&gt;'
+'&lt;a href=&quot;javascript:;&quot; onclick=&quot;edit_user('+ids[i]+');&quot; rel=&quot;nofollow&quot;&gt;&lt;span class=&quot;ui-icon ui-icon-pencil&quot;&gt;&lt;/span&gt;&lt;/a&gt;'

+'';
jQuery(&quot;#user_grid&quot;).setRowData(ids[i],{act:be}); 
}
},
sortorder: &quot;desc&quot;,
jsonReader: { repeatitems : false, id: &quot;0&quot; }, 
caption:&quot;Sales Leads Overview&quot;
}).navGrid('#pager2',{edit:false,add:false,del:false}); 
});

Look around the  <strong>loadComplete</strong> function which inserts the html links in the cell. Hope this helps.</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean</title>
		<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/comment-page-1/#comment-208</link>
		<dc:creator>Dean</dc:creator>
		<pubDate>Fri, 18 Dec 2009 09:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mahbubblog.com/?p=159#comment-208</guid>
		<description>hi there Mahbub,

im working right now on jqgrid w/ codeigniter. Right now im able to display all rows gathered from my db. But my my problem is i cant get it work the add, edit, save &amp; even delete button in the jqgrid. 

could you help me with this. :((
hope to hear from you soon. 

thanks</description>
		<content:encoded><![CDATA[<p>hi there Mahbub,</p>
<p>im working right now on jqgrid w/ codeigniter. Right now im able to display all rows gathered from my db. But my my problem is i cant get it work the add, edit, save &amp; even delete button in the jqgrid. </p>
<p>could you help me with this. <img src='http://www.mahbubblog.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> (<br />
hope to hear from you soon. </p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blueblood</title>
		<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/comment-page-1/#comment-187</link>
		<dc:creator>blueblood</dc:creator>
		<pubDate>Thu, 17 Sep 2009 23:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.mahbubblog.com/?p=159#comment-187</guid>
		<description>is there any demo/sample how it works?</description>
		<content:encoded><![CDATA[<p>is there any demo/sample how it works?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahbub</title>
		<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/comment-page-1/#comment-103</link>
		<dc:creator>Mahbub</dc:creator>
		<pubDate>Sun, 02 Aug 2009 11:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.mahbubblog.com/?p=159#comment-103</guid>
		<description>I have recently used jqgrid 3.5 which is powered by jquery ui. But it&#039;s not as library for CI. I just used it as normal installation using JSON. 

The main thing is that you have to use mtype=&quot;post&quot; in param. This is how it looks like. 

&lt;code&gt;

$(document).ready(function(){
	jQuery(&quot;#user_grid&quot;).jqGrid({
	   	url:&#039;&#039;,
		datatype: &quot;json&quot;,
		mtype : &quot;post&quot;,
	   	colNames:[&#039;Username&#039;,&#039;Email&#039;, &#039;Last login&#039;],
	   	colModel:[
	   		{name:&#039;username&#039;,index:&#039;username&#039;, width:200},
	   		{name:&#039;email&#039;,index:&#039;email&#039;, width:150},
	   		{name:&#039;last_login&#039;,index:&#039;last_login&#039;, width:150},	   			
	   	],
	   	rowNum:10,
	   	rowList:[10,20,30],	   	
	   	pager: jQuery(&#039;#pager2&#039;),
	   	sortname: &#039;id&#039;,
	   	autowidth: true, 
	    viewrecords: true,
	    sortorder: &quot;desc&quot;,
	    jsonReader: { repeatitems : false, id: &quot;0&quot; }, 
	    caption:&quot;All Users&quot;
	}).navGrid(&#039;#pager2&#039;,{edit:false,add:false,del:false});
});

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I have recently used jqgrid 3.5 which is powered by jquery ui. But it&#8217;s not as library for CI. I just used it as normal installation using JSON. </p>
<p>The main thing is that you have to use mtype=&#8221;post&#8221; in param. This is how it looks like. </p>
<p><code></p>
<p>$(document).ready(function(){<br />
	jQuery("#user_grid").jqGrid({<br />
	   	url:'',<br />
		datatype: "json",<br />
		mtype : "post",<br />
	   	colNames:['Username','Email', 'Last login'],<br />
	   	colModel:[<br />
	   		{name:'username',index:'username', width:200},<br />
	   		{name:'email',index:'email', width:150},<br />
	   		{name:'last_login',index:'last_login', width:150},<br />
	   	],<br />
	   	rowNum:10,<br />
	   	rowList:[10,20,30],<br />
	   	pager: jQuery('#pager2'),<br />
	   	sortname: 'id',<br />
	   	autowidth: true,<br />
	    viewrecords: true,<br />
	    sortorder: "desc",<br />
	    jsonReader: { repeatitems : false, id: "0" },<br />
	    caption:"All Users"<br />
	}).navGrid('#pager2',{edit:false,add:false,del:false});<br />
});</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samiuljahan</title>
		<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/comment-page-1/#comment-101</link>
		<dc:creator>samiuljahan</dc:creator>
		<pubDate>Fri, 31 Jul 2009 06:52:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mahbubblog.com/?p=159#comment-101</guid>
		<description>How can I use Jqgrid with codeigniter?</description>
		<content:encoded><![CDATA[<p>How can I use Jqgrid with codeigniter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selma</title>
		<link>http://www.mahbubblog.com/jquery-javascript/16-jquery-plugins-i-used-the-most/comment-page-1/#comment-72</link>
		<dc:creator>selma</dc:creator>
		<pubDate>Sun, 12 Jul 2009 10:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.mahbubblog.com/?p=159#comment-72</guid>
		<description>Is there any piece of code that shows how to use boxy with jquery validation inside the boxy?</description>
		<content:encoded><![CDATA[<p>Is there any piece of code that shows how to use boxy with jquery validation inside the boxy?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

