<?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: saverow from a href click</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/saverow-from-a-href-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/help/saverow-from-a-href-click/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on saverow from a href click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/saverow-from-a-href-click#p2213</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/saverow-from-a-href-click#p2213</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>You mix inline edit with pure grid data.</p>
<p>You should make your own ajax call to save data this way.</p>
</p>
<p>Reagrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 24 Sep 2008 04:49:33 +0300</pubDate>
        </item>
        <item>
        	<title>YamilBracho on saverow from a href click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/saverow-from-a-href-click#p2196</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/saverow-from-a-href-click#p2196</guid>
        	        	<description><![CDATA[<p>Hi.</p>
<p>You have to call your server code by yourself using an AJAX call or a window.open() javascript. For example in a custom button I export my grid to excel and then I use window.open to call a server side code this way:</p>
</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; function showReportWindow(tipo) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var url = "/DomiciliacionPagos/Sector?oper=" + tipo;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; window.open(url, "popup", "width=600,height=600");<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }&#160;&#160;&#160;</p>
</p>
<p>HTH</p>
]]></description>
        	        	<pubDate>Tue, 23 Sep 2008 13:02:57 +0300</pubDate>
        </item>
        <item>
        	<title>bouton on saverow from a href click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/saverow-from-a-href-click#p2191</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/saverow-from-a-href-click#p2191</guid>
        	        	<description><![CDATA[<p>I have a multiselect gridtable with a link below to "save rows". But when I click on that link it doesn&#39;t save. I&#39;ve checked w/ firebug and nothing is being sent... But when I do an alert, the values are there. Obviously I&#39;ve got something wrong.</p>
<p>note - the ID is text and not an interger</p>
<p>Any hints?</p>
<p>jQuery("#newGrid").jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url:&#39;get.php?q=30&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , editurl: getr.php?q=31&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , datatype: "json"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , mtype: &#39;GET&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , loadtext: "Loading..."<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , colNames:[&#39;Value&#39;]<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , colModel:[<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160; {name:&#39;thevalue&#39;, index:&#39;thevalue&#39;, width:198}<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ]<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , sortname: &#39;thevalue&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , sortorder: "asc"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , pgbuttons: false<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , pginput: false<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , viewrecords: false<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , rowList: []<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , height: &#39;100%&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , multiselect: true<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , pager: jQuery(&#39;#newPager&#39;)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , imgpath: &#39;/custom/javascript/jquery-1.2.6/jqGrid/themes/basic/images&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , caption: &#39;Experiments&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , width: "700"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; , height: &#39;100%&#39;<br />&#160;&#160;&#160;&#160;&#160; }).navGrid("#newPager",{search:false,refresh:true,edit:false,add:false,del:false,position:&#39;right&#39;}); <br />&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160; jQuery("#makeNew").click( function() {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var s; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; s = jQuery("#newGrid").getGridParam(&#39;selarrrow&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (x in s) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var ret = jQuery("#newGrid").getRowData(s[x]); <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var thevalue= ret.thevalue;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert(thevalue);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#newGrid").saveRow(thevalue);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160; });</p>
<p>thanks</p>
]]></description>
        	        	<pubDate>Tue, 23 Sep 2008 11:17:10 +0300</pubDate>
        </item>
</channel>
</rss>