<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: jqGrid with an editable checkbox column</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Jules74 on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p19427</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p19427</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>Do you have an idea why ajaxSave is not called when clicking on checkbox in the below sample:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3711' value='Select Code' data-codeid='sfcode3711' /></p>
<div class='sfcode' id='sfcode3711'>
<p>function ajaxSave(rowid, curCheckbox) {<br />&#160;&#160;&#160; alert(&#39;Ahoj&#39;);<br />}</p>
<p>$(document).ready(function() {<br />$(&#39;#bGridView&#39;).jqGrid({<br />&#160;&#160;&#160; datatype: function(pdata) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;.LoaderPanel&#39;).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; getData_bGridView(pdata);<br />&#160;&#160;&#160; },<br />&#160;&#160;&#160; height: &#39;100%&#39;,<br />&#160;&#160;&#160; colNames: [&#34;ActivityNumber&#34;,&#34;Closed&#34;,&#34;Date&#34;,...],<br />&#160;&#160;&#160; colModel: [{ name: &#39;ActivityNumber&#39;, index: &#39;ActivityNumber&#39;, width: 50, sortable: false, hidden: true},<br />{ name: &#39;Closed&#39;, index: &#39;CLOSED&#39;, width: 45, align: &#39;center&#39;, formatter: checkboxFormatter},</p>
<p>{ name: &#39;ActionDate&#39;, index: &#39;STARTDATETIME&#39;, width: 60, align: &#39;center&#39;, formatter: &#39;date&#39;} ...],<br />&#160;&#160;&#160; sortname: &#39;STARTDATETIME&#39;,<br />&#160;&#160;&#160; sortorder: &#39;Asc&#39;,<br />&#160;&#160;&#160; rowNum: 20,<br />&#160;&#160;&#160; pager: &#39;#pagerbGridView&#39;,<br />&#160;&#160;&#160; rowList: [10, 20, 30],<br />&#160;&#160;&#160; page: 1,<br />&#160;&#160;&#160; viewrecords: false,<br />&#160;&#160;&#160; caption: &#39;myGridView&#39;,<br />&#160;&#160;&#160; cellEdit: false,<br />&#160;&#160;&#160; gridview: false,<br />&#160;&#160;&#160; shrinkToFit: false,<br />&#160;&#160;&#160; width: 781,<br />&#160;&#160;&#160; afterEditCell: handleAfterEditCell,<br />&#160;&#160;&#160; beforeSubmitCell: handleBeforeSubmitCell,<br />&#160;&#160;&#160; serializeCellData: handleSerializeCellData,<br />&#160;&#160;&#160; onSelectRow: handleOnSelectRow,<br />&#160;&#160;&#160; gridComplete: function() {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;.LoaderPanel&#39;).hide();<br />&#160;&#160;&#160; }<br />&#160;&#160;&#160; });<br />});<br />function checkboxFormatter(cellvalue, options, rowObject) {<br />&#160;&#160;&#160; cellvalue = cellvalue + &#34;&#34;;<br />&#160;&#160;&#160; cellvalue = cellvalue.toLowerCase();<br />&#160;&#160;&#160; var bchk = cellvalue.search(/(false&#124;0&#124;no&#124;off&#124;n)/i) &#60; 0 ? &#34; checked=\&#34;checked\&#34;&#34; : &#34;&#34;;<br />&#160;&#160;&#160; return &#34;&#60;input type=&#39;checkbox&#39; onclick=\&#34;ajaxSave(&#39;&#34; + options.rowId + &#34;&#39;, this);\&#34; &#34; + bchk + &#34; value=&#39;&#34; + cellvalue + &#34;&#39; offval=&#39;no&#39; /&#62;&#34;;<br />}</p>
</div>
<p>The checkbox appears correctly, but nothing happens when I click on it.</p>
</p>
<p>Thanks,</p>
<p>Jules</p>
]]></description>
        	        	<pubDate>Tue, 31 Aug 2010 10:11:00 +0300</pubDate>
        </item>
        <item>
        	<title>jpalac on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p9161</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p9161</guid>
        	        	<description><![CDATA[<p>It works - thanks!</p>
]]></description>
        	        	<pubDate>Mon, 31 Aug 2009 23:59:43 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p9083</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p9083</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Put the function ajaxSave before jQuery(document).ready(....</p>
<p>and it will work.</p>
</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 31 Aug 2009 04:18:38 +0300</pubDate>
        </item>
        <item>
        	<title>jpalac on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p8931</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p8931</guid>
        	        	<description><![CDATA[<p>Tony,</p>
</p>
<p>Sorry about that - did not see those changes when looking through the docs.</p>
<p>I have now changed the formatter to work with version 3.5, however I&#39;m getting an error&#160;if I click on&#160;the checkbox directly in a cell that is not currently selected for editing (ie the selected row is elsewhere)&#160;Here&#39;s the code:</p>
<p>jQuery(document).ready(function() {<br />var gridimgpath = &#39;../jQuery/jqGrid3.5/themes/basic/images/&#39;;<br />jQuery("#grid").jqGrid({<br />datatype: "local",<br />mtype: "GET",<br />height: 200, //{4},<br />colNames: ["RecordID", "AccountID", "EntityID", "YesNo", "Number1", "Number2", "ImportantDate"],<br />colModel: [<br />{ name: "RecID", index: "RecID", key: true, visible: false, width: 90, sorttype: "long", editable: false, resizable: true },<br />{ name: "AccountID", index: "AccountID", width: 90, editable: true, resizable: true, edittype: "select", formatter: "select" editoptions: { value: "1:Account1;2:Account2;3:Account3;4:Account4"}},<br />{ name: "EntityID", index: "EntityID", width: 90, editable: true, resizable: true, edittype: "select", formatter: "select", editoptions: { value: "1:Entity1;2:Entity2;3:Entity3;4:Entity4"} },<br />{ name: &#39;YesNo&#39;, width: 40, align: &#39;left&#39;, editable: true, formatter: checkboxFormatter, edittype: &#39;checkbox&#39; },<br />//{ name: &#39;YesNo&#39;, width: 40, align: &#39;left&#39;, formatter: &#39;checkbox&#39; },<br />{name: "Number1", index: "Number1", width: 60, align: "right", editable: true, resizable: true, formatter: "currency", editoptions: { size: 10} },<br />{ name: "Number2", index: "Number2", width: 60, align: "right", editable: true, resizable: true, formatter: "currency", editoptions: { size: 10} },<br />{ name: "ImportantDate", index: "ImportantDate", width: 130, editable: true, resizable: true, sorttype: "date", editoptions: { size: 12, dataInit: function(elem) { showdate(elem); } } }<br />], <br />rowNum: 5,<br />rowList: [5, 10, 20, 50, 100, 400],<br />imgpath: gridimgpath,<br />pager: jQuery("#gridpager"),<br />sortname: "RecID",<br />viewrecords: true,<br />sortorder: "asc",<br />forceFit: true,<br />cellEdit: true,<br />cellsubmit: "clientArray",<br />viewsortcols: true,<br />rownumbers: true,<br />footerrow: true,<br />caption: "Test"<br />}).navGrid("#gridpager", { edit: false, add: true, del: true, search: false, view: false })<br />.navButtonAdd("#gridpager", { caption: "Save", onClickButton: function(id) { SaveChanges(); }, position: "last" });</p>
<p>function showdate(elem) {<br />$(elem).datepicker({ changeMonth: true, changeYear: true, yearRange: "-20:+20", dateFormat: "dd/mm/yy" });<br />};</p>
<p>function checkboxFormatter(cellvalue, options, rowObject) {<br />cellvalue = cellvalue + "";<br />cellvalue = cellvalue.toLowerCase();<br />var bchk = cellvalue.search(/(false&#124;0&#124;no&#124;off&#124;n)/i) &#60; 0 ? " checked=\\"checked\\"" : "";<br />//$(el).html("&#60;input type=&#39;checkbox&#39; onclick=\\"ajaxSave(&#39;" + cval.rowId + "&#39;, this);\\" " + bchk + " value=&#39;" + el + "&#39; offval=&#39;no&#39; /&#62;");<br />return "&#60;input type=&#39;checkbox&#39; onclick=\\"ajaxSave(&#39;" + options.rowId + "&#39;, this);\\" " + bchk + " value=&#39;" + cellvalue + "&#39; offval=&#39;no&#39; /&#62;"<br />}</p>
<p>function ajaxSave(rowid, curCheckbox) {<br />//ajax Save code <br />}<br />var mydata3 = [<br />{ RecID: "12345", AccountID: "1", EntityID: "2", YesNo: "True", Number1: "10.00", Number2: "0.00", ImportantDate: "2007-12-03" },<br />{ RecID: "23456", AccountID: "1", EntityID: "4", YesNo: "False", Number1: "2.60", Number2: "3.00", ImportantDate: "2007-12-03" },<br />{ RecID: "34567", AccountID: "2", EntityID: "3", YesNo: "True", Number1: "34.00", Number2: "3.00", ImportantDate: "2007-12-03" },<br />{ RecID: "45678", AccountID: "3", EntityID: "1", YesNo: "True", Number1: "22.00", Number2: "2.00", ImportantDate: "2007-12-03" },<br />{ RecID: "56789", AccountID: "1", EntityID: "1", YesNo: "True", Number1: "10.00", Number2: "9.00", ImportantDate: "2007-12-03" },<br />{ RecID: "67890", AccountID: "4", EntityID: "3", YesNo: "True", Number1: "1.00", Number2: "7.00", ImportantDate: "2007-12-03" },<br />{ RecID: "76543", AccountID: "3", EntityID: "3", YesNo: "True", Number1: "0.60", Number2: "10.00", ImportantDate: "2007-12-03" },<br />{ RecID: "87654", AccountID: "1", EntityID: "2", YesNo: "True", Number1: "67.00", Number2: "4.00", ImportantDate: "2007-12-03" },<br />{ RecID: "98765", AccountID: "1", EntityID: "4", YesNo: "True", Number1: "23.00", Number2: "0.09", ImportantDate: "2007-12-03" }<br />];<br />for (var i = 0; i &#60; mydata3.length; i++)<br />jQuery("#grid").addRowData(mydata3[i].id, mydata3[i]);<br />});</p>
</p>
<p>Thanks,</p>
</p>
<p>Jo</p>
]]></description>
        	        	<pubDate>Sun, 23 Aug 2009 22:56:15 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p8881</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p8881</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>If you upgrade from 3.4 to 3.5 version you should first read this:</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:upgrade_from_3.4.x_to_3.5" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....4.x_to_3.5</a></p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 21 Aug 2009 03:31:19 +0300</pubDate>
        </item>
        <item>
        	<title>jpalac on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p8829</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p8829</guid>
        	        	<description><![CDATA[<p>Hi,</p>
</p>
<p>When I try the above checkboxFormatter I don&#39;t get a checkbox appearing but I get "undefined".</p>
<p>I&#39;ve also modified the function to be:</p>
</p>
<p>function checkboxFormatter(el, cval, opts) {<br />el = el + "";<br />el = el.toLowerCase();<br />var bchk = el.search(/(false&#124;0&#124;no&#124;off&#124;n)/i) &#60; 0 ? " checked=\\"checked\\"" : "";<br />$(el).html("&#60;input type=&#39;checkbox&#39; onclick=\\"ajaxSave(&#39;" + cval.rowId + "&#39;, this);\\" " + bchk + " value=&#39;" + el + "&#39; offval=&#39;no&#39; /&#62;"); <br />}</p>
</p>
<p>What am I doing wrong?</p>
</p>
<p>Regards,</p>
</p>
<p>Jo</p>
]]></description>
        	        	<pubDate>Wed, 19 Aug 2009 19:47:25 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7860</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7860</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Do not think that is a jqGrid problem. Check your code again.</p>
<p>Reagrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 16 Jul 2009 01:35:55 +0300</pubDate>
        </item>
        <item>
        	<title>jqUser on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7839</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7839</guid>
        	        	<description><![CDATA[<p>Thanks.</p>
<p>With above code, on moving through pages (via paging bar) the memory consumed by browser (IE 7) keeps increasing, indicating memory leak. <strong>How to fix it ?</strong></p>
<p>Do I have to implement &#39;unformatter&#39; function ?</p>
</p>
<p>Thank You.</p>
]]></description>
        	        	<pubDate>Wed, 15 Jul 2009 19:31:08 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7613</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7613</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Actually this is the way - creating custom formatter.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 02 Jul 2009 03:55:32 +0300</pubDate>
        </item>
        <item>
        	<title>jqUser on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7583</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7583</guid>
        	        	<description><![CDATA[<p>I created a custom formatter for checkbox column called <br />checkboxFormatter(). </p>
<p><span style="color: #0000ff;">----------------------------------------------------------------------------------------------------------------------------------------------------------------- <br />&#60;html&#62; <br />&#60;head&#62; <br />&#160; &#160; &#60;title&#62;jqGrid - Custom Formatter&#60;/title&#62; <br />&#160; &#160; &#60;link rel="stylesheet" type="text/css" href="/themes/coffee/ <br />grid.css" &#160;title="coffee" media="screen" /&#62; <br />&#160; &#160; &#60;script src="/jquery-1.3.2.js" type="text/javascript"&#62;&#60;/script&#62; <br />&#160; &#160; &#60;script src="/jqgrid/jquery.jqGrid.js" type="text/javascript"&#62;&#60;/ <br />script&#62; <br />&#160; &#160; &#60;script src="/jqgrid/js/jqModal.js" type="text/javascript"&#62;&#60;/ <br />script&#62; <br />&#160; &#160; &#60;script src="/jqgrid/js/jqDnR.js" type="text/javascript"&#62;&#60;/script&#62; </span></p>
<p>&#160; &#60;script type="text/javascript"&#62; <br />&#160; &#160; &#160; jQuery(document).ready(function() { <br />&#160; &#160; &#160; &#160; &#160; jQuery("#list1").jqGrid({ <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; url: &#39;/Data/GridDataNamedColums/&#39;, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; datatype: &#39;json&#39;, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; mtype: &#39;GET&#39;, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; jsonReader: { <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; total: "total", //total pages for the query <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; page: "page", //current page of the query <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; records: "records", //total number of records for <br />the query <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; root: "rows", //an array that contains the actual <br />data <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; repeatitems: false, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; id: "other" //the unique id of the row <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; }, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; colNames: [&#39;someNumber&#39;, &#39;vote&#39;, &#39;Title&#39;, &#39;other&#39;], <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; colModel: [ <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; { name: &#39;someNumber&#39;, width: 40, align: <br />&#39;left&#39; }, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; { name: &#39;vote&#39;, width: 40, align: &#39;left&#39;, <br />formatter: checkboxFormatter }, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; { name: &#39;Title&#39;, width: 400, align: &#39;left&#39; }, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; { name: &#39;other&#39;, width: 40, align: &#39;left&#39; }, ], <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;onSelectRow: function(rowid) { <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;alert(&#39;Selected ... rowid=&#39; + rowid); <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;}, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; pager: jQuery(&#39;#pagerBar&#39;), <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; rowNum: 10, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; //rowList: [2, 5, 10, 20, 50], <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; viewrecords: true, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; height: 250, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; imgpath: &#39;/themes/coffee/images&#39;, <br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; caption: &#39;Custom Formatter grid&#39; <br />&#160; &#160; &#160; &#160; &#160; }); <br />&#160; &#160; &#160; }); </p>
<p>&#160; &#160; &#160; //checkboxFormatter to wire onclick event of checkbox <br />&#160; &#160; &#160; function checkboxFormatter(el, cval, opts) { <br />&#160; &#160; &#160; &#160; &#160; cval = cval + ""; cval = cval.toLowerCase(); <br />&#160; &#160; &#160; &#160; &#160; var bchk = cval.search(/(false&#124;0&#124;no&#124;off&#124;n)/i) &#60; 0 ? " <br />checked=\\"checked\\"" : ""; <br />&#160; &#160; &#160; &#160; &#160; $(el).html("&#60;input type=&#39;checkbox&#39; onclick=\\"ajaxSave(&#39;" + <br />opts.rowId + "&#39;, this);\\" " + bchk + " value=&#39;" + cval + "&#39; <br />offval=&#39;no&#39; /&#62;"); <br />&#160; &#160; &#160; } </p>
<p>&#160; &#160; function ajaxSave(rowid, curCheckbox) { <br />&#160; &#160; &#160; &#160; &#160; //ajax Save code <br />&#160; &#160; &#160;} <br />&#160; &#60;/script&#62; <br />&#60;/head&#62; </p>
<p>&#60;body&#62; <br />&#160; &#160; &#160; &#160; &#60;h2&#62;List - CUSTOM Formatter &#60;/h2&#62; <br />&#160; &#160; &#160; &#160; &#60;table id="list1" class="scroll" cellpadding="0" <br />cellspacing="0"&#62;&#60;/table&#62; <br />&#160; &#160; &#160; &#160; &#60;div id="pagerBar" class="scroll" style="text-align:center;"&#62;&#60;/ <br />div&#62; <br />&#60;/body&#62; <br />&#60;/html&#62; <br />----------------------------------------------------------------------------------------------------------------------------------------------------------------- </p>
<p>Predefined formatter function, present in jquery.fmatter.js file, are <br />called from $.unformat and fireFormatter functions. <br />But I have simply added &#39;checkboxFormatter&#39; in web page (as shown <br />above). <span style="color: #ff0000;"><strong>I have NOT modified jquery.fmatter.js.</strong></span></p>
<p><strong>Is this correct ?</strong> <br /><strong><span style="color: #0000ff;">Will it create momory leak issues ?</span></strong></p>
<p>Thank You.</p>
]]></description>
        	        	<pubDate>Wed, 01 Jul 2009 18:56:44 +0300</pubDate>
        </item>
        <item>
        	<title>jqUser on jqGrid with an editable checkbox column</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7582</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-with-an-editable-checkbox-column#p7582</guid>
        	        	<description><![CDATA[<p>Hello, </p>
<p>I&#39;m trying to create a grid, using jqGrid-3.4.4, with checkbox in one <br />of its column. <br />I have been able to create grid in which first click makes cell <br />editable checkbox, second click to set checkbox value and third ENTER <br />press to save value. </p>
<p><span style="text-decoration: underline;">Requirements:</span> <br />1. On clicking checkbox, it should send AJAX post to server. User <br />should NOT have to press ENTER. </p>
<p>2. When grid is initially displayed, editable checkbox should be <br />displayed. </p>
<p>So ideally, single click on a checkbox should post value to server via <br />ajax. </p>
<p>Please advise how to achieve the functionality. </p>
<p>Thank You.</p>
]]></description>
        	        	<pubDate>Wed, 01 Jul 2009 18:54:55 +0300</pubDate>
        </item>
</channel>
</rss>