<?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: Adding more parameters to cellurl</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/adding-more-parameters-to-cellurl</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/adding-more-parameters-to-cellurl/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Adding more parameters to cellurl</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/adding-more-parameters-to-cellurl#p30492</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/adding-more-parameters-to-cellurl#p30492</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>Well - there is documentation for this.</p>
<p>You will need to use <strong>serializeCellData</strong> .</p>
<p>You may need to look at this <a href="/jqgridwiki/doku.php?id=wiki:cell_editing#events" target="_blank">docs here</a></p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Mon, 14 Apr 2014 15:06:21 +0300</pubDate>
        </item>
        <item>
        	<title>sebastiancb on Adding more parameters to cellurl</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/adding-more-parameters-to-cellurl#p30487</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/adding-more-parameters-to-cellurl#p30487</guid>
        	        	<description><![CDATA[<p>Hello, I have a grid and I need to send more parameters to cellurl.&#160; I read the documentation, but I was not able to solve it.</p>
<p>is this posible?</p>
<p>MY source code:</p>
</p>
<p>&#160;$("#tb_conf_servicios").jqGrid({url: &#39;configuracion/conf_servicios/lista.php&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "xml",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;id&#39;, &#39;CUP&#39;, &#39;Descripci&#243;n&#39;, &#39;Nivel&#39;,&#39;Plano&#39;, &#39;Sexo&#39;, &#39;Edad Inicio&#39;, &#39;Edad Fin&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;id_serv&#39;, index: &#39;id_serv&#39;, width: 50, sortable: true, hidden: true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;cup&#39;, index: &#39;cup&#39;, width: 80, sortable: true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;descripcion&#39;, index: &#39;descripcion&#39;, width: 420, sortable: true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;nivel&#39;, index: &#39;nivel&#39;, width: 30, sortable: true, editable: true, edittype: &#39;select&#39;, editoptions: {value: "1:1;2:2;3:3;4:4"}},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;plano&#39;, index: &#39;plano&#39;, width: 50, sortable: true, editable: true, edittype: &#39;select&#39;, editoptions: {value: "1:AC;3:AP;4:OT"}},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;sexo&#39;, index: &#39;sexo&#39;, width: 30, sortable: true, editable: true, edittype: &#39;select&#39;, editoptions: {value: "A:A;M:M;F:F"}},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;edad_inicio&#39;, index: &#39;edad_inicio&#39;, width: 65, sortable: true, editable: true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name: &#39;edad_fin&#39;, index: &#39;edad_fin&#39;, width: 70, sortable: true, editable: true}],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 10,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: [10, 20, 30],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#paginador_conf_servcios&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;id_serv&#39;,<br />&#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; sortorder: "asc",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlReader: {root: "rows",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; row: "row",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; repeatitems: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; id: "[id]"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: "Clasificacion de Servicios",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: &#39;100%&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; cellurl: &#39;configuracion/conf_servicios/editar.php&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; beforeSubmitCell:function(id){<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var ret = $(&#39;#tb_conf_servicios&#39;).jqGrid(&#39;getRowData&#39;, id);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert(ret.nivel);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $("#tb_conf_servicios").jqGrid(&#39;setPostData&#39;,{param2:"p2"});<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; } <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
]]></description>
        	        	<pubDate>Sun, 13 Apr 2014 02:51:26 +0300</pubDate>
        </item>
</channel>
</rss>