<?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: afterSubmitCell fires in every click</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/aftersubmitcell-fires-in-every-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/aftersubmitcell-fires-in-every-click/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>srfran73 on afterSubmitCell fires in every click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/aftersubmitcell-fires-in-every-click#p20561</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/aftersubmitcell-fires-in-every-click#p20561</guid>
        	        	<description><![CDATA[<p>Thx a lot,</p>
<p>the return element solution my "no-reading" problem.</p>
<p>The final edition for the function is:</p>
</p>
<p>&#160;&#160; &#160;&#160;&#160;&#160; afterSubmitCell: function (serverStatus, rowid, cellname, value, iRow, iCol) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; var response = trim(serverStatus.responseText);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; if (response == &#39;ok&#39;){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;return [true,""];<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; }else{<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;return [false,response];<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; }<br />&#160;&#160; &#160;&#160;&#160; &#160;}</p>
</p>
<p>its easy.</p>
</p>
<p>Thx another time.</p></p>
]]></description>
        	        	<pubDate>Fri, 29 Oct 2010 13:33:57 +0300</pubDate>
        </item>
        <item>
        	<title>tony on afterSubmitCell fires in every click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/aftersubmitcell-fires-in-every-click#p20522</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/aftersubmitcell-fires-in-every-click#p20522</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Please Read the docs. There is important thing which you omitt - the event SHOULD return something, in your definition this is missed.</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:cell_editing#events" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....ing#events</a></p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Wed, 27 Oct 2010 17:27:46 +0300</pubDate>
        </item>
        <item>
        	<title>srfran73 on afterSubmitCell fires in every click</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/aftersubmitcell-fires-in-every-click#p20409</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/aftersubmitcell-fires-in-every-click#p20409</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>my problem its in a cell editing i have this code:</p>
</p>
<p>&#160;&#160;&#160; jQuery("#tabla_recogidas").jqGrid({ <br />&#160;&#160; &#160;&#160;&#160; &#160;sortable: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;url:&#39;getRecogidasAsignacionJQGrid.json&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: "json", <br />&#160;&#160; &#160;&#160;&#160; &#160;height: 155, <br />&#160;&#160; &#160;&#160;&#160; &#160;width: 750, <br />&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;&#60;fmt:message key="recogida.fecha"/&#62;&#39;,&#39;&#60;fmt:message key="recogida.num.recogida"/&#62;&#39;, &#39;&#60;fmt:message key="recogida.estado"/&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#39;&#60;fmt:message key="recogida.cliente"/&#62;&#39;, &#39;&#60;fmt:message key="recogida.remitente"/&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#39;&#60;fmt:message key="recogida.zonaRemitente"/&#62;&#39;, &#39;&#60;fmt:message key="recogida.conductor"/&#62;&#39;], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ &#160;&#160; &#160;{name:&#39;fecha&#39;,index:&#39;fecha&#39;, width:65}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;recogida&#39;,index:&#39;recogida&#39;, width:150}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;estado&#39;,index:&#39;estado&#39;, width:65, sortable:false, search:false}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;cliente&#39;,index:&#39;cliente&#39;, width:150}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;remitente&#39;,index:&#39;remitente&#39;, width:150}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;zona&#39;,index:&#39;zona&#39;, width:150, editable:true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;conductor&#39;,index:&#39;conductor&#39;, width:150, editable:true}], &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum:50,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowTotal: ${num_total_recogidas}, <br />&#160;&#160; &#160;&#160;&#160; &#160;scroll:1, <br />&#160;&#160; &#160;&#160;&#160; &#160;loadonce:false, <br />&#160;&#160; &#160;&#160;&#160; &#160;mtype: "POST", <br />&#160;&#160; &#160;&#160;&#160; &#160;rownumbers: false, <br />&#160;&#160; &#160;&#160;&#160; &#160;cellEdit: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;cellsubmit: &#39;remote&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;cellurl: &#39;updateRecogidasZonaConductor.json&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;afterSubmitCell: function (serverStatus, rowid, cellname, value, iRow, iCol) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; var response = trim(serverStatus.responseText);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; if (response != &#39;ok&#39;){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;$(this).restoreCell(iRow, iCol);&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$("#dialog-modal").html(msgError(response));&#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;$("#dialog-modal").dialog({<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;height: 140,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;width: 300,&#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;modal: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;title: "&#60;fmt:message key="titulo.msg"/&#62;",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;buttons: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#60;fmt:message key="boton.cerrar"/&#62;: function() {<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;$(this).dialog("close");<br />&#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; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; },<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; reloadAfterSubmit: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; reloadAfterEdit: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;//gridview: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#ptabla_recogidas&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;fecha&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortorder: "asc", <br />&#160;&#160; &#160;&#160;&#160; &#160;caption: "&#60;fmt:message key="recogida.tabla.datos"/&#62;",<br />&#160;&#160; &#160;&#160;&#160; &#160;postData: {<br />&#160;&#160; &#160;&#160;&#160; &#160; manautBusq: $(&#39;#manautBusq&#39;).attr(&#39;value&#39;), fechaBusq: $(&#39;#fechaBusq&#39;).attr(&#39;value&#39;) , recogidaBusq: $(&#39;#recogidaBusq&#39;).attr(&#39;value&#39;) , fecPrevistaRecogidaBusq: $(&#39;#fecPrevistaRecogidaBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; clienteBusq: $(&#39;#clienteBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; remitenteBusq: $(&#39;#remitenteBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; zonaBusq: $(&#39;#zonaBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; conductorBusq: $(&#39;#conductorBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; fecrearecBusq: $(&#39;#fecrearecBusq&#39;).attr(&#39;value&#39;),<br />&#160;&#160; &#160;&#160;&#160; &#160; zonaNull: $(&#39;#zonaNull&#39;).attr(&#39;checked&#39;) ,<br />&#160;&#160; &#160;&#160;&#160; &#160; conductorNull: $(&#39;#conductorNull&#39;).attr(&#39;checked&#39;)}<br />&#160;&#160; &#160;&#160;&#160; &#160;});<br />&#160;&#160; &#160;jQuery("#tabla_recogidas").jqGrid(&#39;navGrid&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#39;#ptabla_recogidas&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{del:false,add:false,edit:false},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{multipleSearch:true}); &#160;<br />&#160;&#160; &#160;jQuery("#tabla_recogidas").jqGrid(&#39;navButtonAdd&#39;,&#39;#ptabla_recogidas&#39;,{ caption: "&#60;fmt:message key="tabla_datos.columnas"/&#62;", title: "&#60;fmt:message key="tabla_datos.reordenar.columnas"/&#62;", onClickButton : function (){<br />&#160;&#160; &#160;&#160;&#160; &#160; jQuery("#tabla_recogidas").jqGrid(&#39;columnChooser&#39;); } }); &#160;&#160; &#160;<br />&#160;&#160; &#160;jQuery("#tabla_recogidas").jqGrid(&#39;gridResize&#39;,{minWidth:500,maxWidth:750,minHeight:255, maxHeight:355});</p>
</p>
<p>the first time i edit a cell everything its ok, the server response its manage by afterSubmitCell and the error its displayed in a modal dialog but in this moment if i click in a cell a submit its send to server like i press the enter key over the cell and the event fires another time... i think that its a bug because if a remove the event function the error its removed.</p>
</p>
<p>I apreciate any kind of help with this problem...</p>
</p>
<p>Thx a lot.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 456px; width: 1px; height: 1px; overflow: hidden;">&#160;&#160;&#160; jQuery("#tabla_recogidas").jqGrid({ <br />&#160;&#160; &#160;&#160;&#160; &#160;sortable: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;url:&#39;getRecogidasAsignacionJQGrid.json&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: "json", <br />&#160;&#160; &#160;&#160;&#160; &#160;height: 155, <br />&#160;&#160; &#160;&#160;&#160; &#160;width: 750, <br />&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;&#60;fmt:message key="recogida.fecha"/&#62;&#39;,&#39;&#60;fmt:message key="recogida.num.recogida"/&#62;&#39;, &#39;&#60;fmt:message key="recogida.estado"/&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#39;&#60;fmt:message key="recogida.cliente"/&#62;&#39;, &#39;&#60;fmt:message key="recogida.remitente"/&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#39;&#60;fmt:message key="recogida.zonaRemitente"/&#62;&#39;, &#39;&#60;fmt:message key="recogida.conductor"/&#62;&#39;], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ &#160;&#160; &#160;{name:&#39;fecha&#39;,index:&#39;fecha&#39;, width:65}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;recogida&#39;,index:&#39;recogida&#39;, width:150}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;estado&#39;,index:&#39;estado&#39;, width:65, sortable:false, search:false}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;cliente&#39;,index:&#39;cliente&#39;, width:150}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;remitente&#39;,index:&#39;remitente&#39;, width:150}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;zona&#39;,index:&#39;zona&#39;, width:150, editable:true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;conductor&#39;,index:&#39;conductor&#39;, width:150, editable:true}], &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum:50,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowTotal: ${num_total_recogidas}, <br />&#160;&#160; &#160;&#160;&#160; &#160;scroll:1, <br />&#160;&#160; &#160;&#160;&#160; &#160;loadonce:false, <br />&#160;&#160; &#160;&#160;&#160; &#160;mtype: "POST", <br />&#160;&#160; &#160;&#160;&#160; &#160;rownumbers: false, <br />&#160;&#160; &#160;&#160;&#160; &#160;cellEdit: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;cellsubmit: &#39;remote&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;cellurl: &#39;updateRecogidasZonaConductor.json&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;afterSubmitCell: function (serverStatus, rowid, cellname, value, iRow, iCol) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; var response = trim(serverStatus.responseText);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; if (response != &#39;ok&#39;){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; &#160;&#160;&#160; &#160;$(this).restoreCell(iRow, iCol);&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$("#dialog-modal").html(msgError(response));&#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;$("#dialog-modal").dialog({<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;height: 140,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;width: 300,&#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;modal: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;title: "&#60;fmt:message key="titulo.msg"/&#62;",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;buttons: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#60;fmt:message key="boton.cerrar"/&#62;: function() {<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;$(this).dialog("close");<br />&#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; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; },<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; reloadAfterSubmit: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; reloadAfterEdit: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;//gridview: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#ptabla_recogidas&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;fecha&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortorder: "asc", <br />&#160;&#160; &#160;&#160;&#160; &#160;caption: "&#60;fmt:message key="recogida.tabla.datos"/&#62;",<br />&#160;&#160; &#160;&#160;&#160; &#160;postData: {<br />&#160;&#160; &#160;&#160;&#160; &#160; manautBusq: $(&#39;#manautBusq&#39;).attr(&#39;value&#39;), fechaBusq: $(&#39;#fechaBusq&#39;).attr(&#39;value&#39;) , recogidaBusq: $(&#39;#recogidaBusq&#39;).attr(&#39;value&#39;) , fecPrevistaRecogidaBusq: $(&#39;#fecPrevistaRecogidaBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; clienteBusq: $(&#39;#clienteBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; remitenteBusq: $(&#39;#remitenteBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; zonaBusq: $(&#39;#zonaBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; conductorBusq: $(&#39;#conductorBusq&#39;).attr(&#39;value&#39;) , <br />&#160;&#160; &#160;&#160;&#160; &#160; fecrearecBusq: $(&#39;#fecrearecBusq&#39;).attr(&#39;value&#39;),<br />&#160;&#160; &#160;&#160;&#160; &#160; zonaNull: $(&#39;#zonaNull&#39;).attr(&#39;checked&#39;) ,<br />&#160;&#160; &#160;&#160;&#160; &#160; conductorNull: $(&#39;#conductorNull&#39;).attr(&#39;checked&#39;)}<br />&#160;&#160; &#160;&#160;&#160; &#160;});<br />&#160;&#160; &#160;jQuery("#tabla_recogidas").jqGrid(&#39;navGrid&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#39;#ptabla_recogidas&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{del:false,add:false,edit:false},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{multipleSearch:true}); &#160;<br />&#160;&#160; &#160;jQuery("#tabla_recogidas").jqGrid(&#39;navButtonAdd&#39;,&#39;#ptabla_recogidas&#39;,{ caption: "&#60;fmt:message key="tabla_datos.columnas"/&#62;", title: "&#60;fmt:message key="tabla_datos.reordenar.columnas"/&#62;", onClickButton : function (){<br />&#160;&#160; &#160;&#160;&#160; &#160; jQuery("#tabla_recogidas").jqGrid(&#39;columnChooser&#39;); } }); &#160;&#160; &#160;<br />&#160;&#160; &#160;jQuery("#tabla_recogidas").jqGrid(&#39;gridResize&#39;,{minWidth:500,maxWidth:750,minHeight:255, maxHeight:355}); &#160;&#160;&#160;</div>
]]></description>
        	        	<pubDate>Thu, 21 Oct 2010 17:58:20 +0300</pubDate>
        </item>
</channel>
</rss>