<?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: Multiple sorting not displaying</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying</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/multiple-sorting-not-displaying/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Multiple sorting not displaying</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17418</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17418</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Not sure if this will be available soon.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 24 May 2010 18:11:37 +0300</pubDate>
        </item>
        <item>
        	<title>subte on Multiple sorting not displaying</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17356</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17356</guid>
        	        	<description><![CDATA[<p>Ah ok, and it is possible? some indication of how to make it?</p>
</p>
<p>Thanks!!</p>
]]></description>
        	        	<pubDate>Thu, 20 May 2010 19:26:51 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Multiple sorting not displaying</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17346</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17346</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Nothing is wrong. Currently we do not support multiple sorting. That mean if you have constructed your own instead of this only one sort icon will be active</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 20 May 2010 18:36:35 +0300</pubDate>
        </item>
        <item>
        	<title>subte on Multiple sorting not displaying</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17323</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-sorting-not-displaying#p17323</guid>
        	        	<description><![CDATA[<p>I need do multiple sorting, but the jqgrid not show me the icons of the sort direction for each column. What is wrong in this code?</p>
</p>
<p>jQuery(document).ready(function() {</p>
<p>$("#grid").jqGrid(</p>
<p>{</p>
<p>datatype: function() {</p>
<p>$.ajax(</p>
<p>{</p>
<p>url: "OrdenDeProduccion.aspx/GetOrdenDeProduccion", //PageMethod</p>
</p>
<p>data: "{&#39;pPageSize&#39;:&#39;" + $(&#39;#grid&#39;).getGridParam("rowNum") +</p>
<p>"&#39;,&#39;pCurrentPage&#39;:&#39;" + $(&#39;#grid&#39;).getGridParam("page") +</p>
<p>"&#39;,&#39;pSortColumn&#39;:&#39;" + $(&#39;#grid&#39;).getGridParam("sortname") +</p>
<p>"&#39;,&#39;pSortOrder&#39;:&#39;" + $(&#39;#grid&#39;).getGridParam("sortorder") + "&#39;}", //PageMethod Parametros de entrada</p>
</p>
<p>dataType: "json",</p>
<p>type: "post",</p>
<p>contentType: "application/json; charset=utf-8",</p>
<p>complete: function(jsondata, stat) {</p>
<p>if (stat == "success")</p>
<p>jQuery("#grid")[0].addJSONData(JSON.parse(jsondata.responseText).d);</p>
<p>else</p>
<p>alert("Error al traer los datos desde json");</p>
<p>}</p>
<p>});</p>
<p>},</p>
<p>jsonReader: //Set the jsonReader to the JQGridJSonResponse squema to bind the data.</p>
<p>{</p>
<p>root: "Items",</p>
<p>page: "CurrentPage",</p>
<p>total: "PageCount",</p>
<p>records: "RecordCount",</p>
<p>repeatitems: true,</p>
<p>cell: "Row",</p>
<p>id: "Id"</p>
<p>},</p>
<p>colModel: //Columns</p>
<p>[</p>
<p>{ index: &#39;Id&#39;, name: &#39;Id&#39;, width: 10, align: &#39;Left&#39;, label: &#39;Id&#39;, hidden: true },</p>
<p>{ index: &#39;Horaentrada&#39;, name: &#39;Horaentrada&#39;, align: &#39;Center&#39;, label: &#39;Hora&#39;, width: 200, sortable: false },</p>
<p>{ index: &#39;Producto&#39;, name: &#39;Producto&#39;, align: &#39;Center&#39;, label: &#39;Producto&#39;, width:200 },</p>
<p>{ index: &#39;Cantidad&#39;, name: &#39;Cantidad&#39;, align: &#39;Center&#39;, label: &#39;Cantidad&#39;, width: 200, sorttype: &#39;int&#39; },</p>
<p>{ index: &#39;Precio&#39;, name: &#39;Precio&#39;, align: &#39;Center&#39;, label: &#39;Precio&#39;, width: 200, sorttype: &#39;float&#39; },</p>
<p>],</p>
<p>caption: "Tabla Orden de Produccion",</p>
<p>loadtext: &#39;Cargando datos...&#39;,</p>
<p>emptyrecords: &#39;No hay resultados&#39;,</p>
<p>rowNum: 10, // PageSize.</p>
<p>rownumbers: true,</p>
<p>rownumWidth: 40,</p>
<p>gridview: true,</p>
<p>pager: "#pager", //Pager</p>
<p>viewrecords: true,</p>
<p>//sortname: "Cantidad",</p>
<p>sortorder: "asc", //Default SortOrder.</p>
<p>viewsortcols: true,</p>
<p>width: "760",</p>
<p>height: "260"</p>
<p>}).navGrid("#pager", "#grid",  { edit: false, add: false, search: true, del: false });</p>
<p>});</p>
</p>
<p>Thanks,</p>
<p>Regards!</p>
]]></description>
        	        	<pubDate>Thu, 20 May 2010 06:22:44 +0300</pubDate>
        </item>
</channel>
</rss>