<?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: multikey causes checkmark to appear in all rows on click</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/multikey-causes-checkmark-to-appear-in-all-rows-on-click</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/bugs/multikey-causes-checkmark-to-appear-in-all-rows-on-click/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>k2s on multikey causes checkmark to appear in all rows on click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/multikey-causes-checkmark-to-appear-in-all-rows-on-click#p24035</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/multikey-causes-checkmark-to-appear-in-all-rows-on-click#p24035</guid>
        	        	<description><![CDATA[<p>I had this problem with jqGrid version 3.8.2.</p>
<p>Versions 3.7.1 and 4.1.2 work fine for me.</p>
]]></description>
        	        	<pubDate>Fri, 22 Jul 2011 14:29:21 +0300</pubDate>
        </item>
        <item>
        	<title>kobruleht on multikey causes checkmark to appear in all rows on click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/multikey-causes-checkmark-to-appear-in-all-rows-on-click#p23175</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/multikey-causes-checkmark-to-appear-in-all-rows-on-click#p23175</guid>
        	        	<description><![CDATA[<p>If multikey: option is specified, clicking in some row checkbox puts chechboxes to all rows but no one rows are selected, row background does not change. How to fix ?</p>
</p>
<p>grid.jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;&#60;%= ResolveUrl("~/Grid/GetData?_entity=Strings")%&#62;&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160; scroll: 1,<br />&#160;&#160;&#160;&#160;&#160;&#160; datatype: "json",<br />&#160;&#160;&#160;&#160;&#160;&#160; mtype: &#39;POST&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; colModel: [<br />&#160;&#160; &#160;&#160;{ name: &#39;source&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;est&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;eng&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;rus&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;fin&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;lvl&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;ger&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;istopic&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;critical&#39;, editable: true },<br />&#160;&#160; &#160;],</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ondblClickRow&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; : function (id) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (id &#38;&#38; id !== lastSel) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; grid.restoreRow(lastSel);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; lastSel = id;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; grid.editRow(id, true);</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 100,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; autoencode: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; gridview: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#pscrolling&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;est&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: "asc",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: "Test",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: [100, 1000, 100000],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; editurl: &#39;&#60;%= ResolveUrl("~/Grid/Save?_entity=Strings")%&#62;&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; multikey: "ctrlKey",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; multiselect: true<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
]]></description>
        	        	<pubDate>Sun, 15 May 2011 12:25:25 +0300</pubDate>
        </item>
</channel>
</rss>