<?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: editGridRow - next/prev arrow  check checkboxes</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes</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/editgridrow-nextprev-arrow-check-checkboxes/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>jmcleod3 on editGridRow - next/prev arrow  check checkboxes</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6820</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6820</guid>
        	        	<description><![CDATA[<p>Sorry, your right.</p>
<p>I didn&#39;t change the code before pasting to forum. I&#39;ve solved the problem.</p>
<p>Thanks.</p>
<p>John</p>
]]></description>
        	        	<pubDate>Wed, 20 May 2009 14:54:48 +0300</pubDate>
        </item>
        <item>
        	<title>tony on editGridRow - next/prev arrow  check checkboxes</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6816</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6816</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I&#39;m wondering how this work.</p>
<p>You have</p>
<p>var gsr = jQuery(&#39;#list&#39;).getGridParam(&#39;selarrrow&#39;);</p>
<p>this should return array, but to the editGridRow we should pass single value.</p>
<p>Not sure what you actually try to do. Is this the entry code or there is a more?</p>
<p>Also to disable these buttons you can use beforeShowForm event like this</p>
<p>beforeShowForm : function&#160; (formid)&#160; {</p>
<p>$("#pData, #nData",formid).hide();</p>
<p>}</p>
</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 20 May 2009 14:08:44 +0300</pubDate>
        </item>
        <item>
        	<title>tony on editGridRow - next/prev arrow  check checkboxes</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6813</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6813</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I&#39;m wondering how this work.</p>
<p>You have</p>
<p>var gsr = jQuery(&#39;#list&#39;).getGridParam(&#39;selarrrow&#39;);</p>
<p>this should return array, but to the editGridRow we should pass single value.</p>
<p>Not sure what you actually try to do. Is this the entry code or there is a more?</p>
<p>Also to disable these buttons you can use beforeShowForm event like this</p>
<p>beforeShowForm : function&#160; (formid)&#160; {</p>
<p>$("#pData, #nData",formid).hide();</p>
<p>}</p>
</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 20 May 2009 13:52:39 +0300</pubDate>
        </item>
        <item>
        	<title>jmcleod3 on editGridRow - next/prev arrow  check checkboxes</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6775</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6775</guid>
        	        	<description><![CDATA[<p>Sorry, here&#39;s some of my code from the ".navGrid"</p>
<p>.navGrid(&#39;#pager&#39;, { edit:false, add:false, del:false, refresh:false, search:false},{height:200, reloadAfterSubmit:true })<br />&#160;&#160;&#160; &#160;&#160;&#160; .navButtonAdd(&#39;#pager&#39;,{caption:"Approve LOI",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; onClickButton:function() {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //retreive row id array from Grid<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; var gsr = jQuery(&#39;#list&#39;).getGridParam(&#39;selarrrow&#39;);<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // if user selects a row then update applications table in database, applicationStatus = &#39;lioSubmitted&#39; and lioApproved = &#39;1&#39;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; if(gsr){<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //alert(gsr);<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery(&#39;#list&#39;).editGridRow(<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; gsr,<br />&#160;&#160;&#160; &#160;&#160;&#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;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; height:200, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; reloadAfterSubmit:false, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; bSubmit:"Approve", <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; editCaption:"Approve Letter of Intent",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; drag:true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; modal:true<br />&#160;&#160;&#160; &#160;&#160;&#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; );<br />&#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; } else {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; alert("Please select Row.");<br />&#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; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; });</p>
]]></description>
        	        	<pubDate>Wed, 20 May 2009 09:46:53 +0300</pubDate>
        </item>
        <item>
        	<title>jmcleod3 on editGridRow - next/prev arrow  check checkboxes</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6773</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editgridrow-nextprev-arrow-check-checkboxes#p6773</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I&#39;m using a grid and multiselect rows to edit. When I click on the next/prev arrow buttons in the modal box, the result is at the grid, the checkboxes are being marked (checked).</p>
<p>Is there a way to disable the next/prev arrow buttons?</p>
<p>Thank you.</p>
<p>Jmcleod</p></p>
]]></description>
        	        	<pubDate>Wed, 20 May 2009 09:44:44 +0300</pubDate>
        </item>
</channel>
</rss>