<?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: Filtertoolbar</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/filtertoolbar</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/filtertoolbar/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>kike_4 on Filtertoolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29283</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29283</guid>
        	        	<description><![CDATA[<p>Hello thanks for your response. I mean, i want to people know that the blank label is to search, so i want to show "Search by ..." in every label of the filter, and when people click on them, it dissapear and they can type anything they want to search. Where do i have to set the column no searchable? Because my columns came from a dynamic JSON that changes every minute so i dont define every column in the code...</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Tue, 06 Aug 2013 13:08:37 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Filtertoolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29277</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29277</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>How do yo set the column to be searchble?</p>
<p>Setting the search tofalse does not make this field searchable.</p>
<p>What is filter label?</p>
<p>When you search on the toolbar the labels of the columns are used or I&#39;m wrong?</p>
<p>The best is to consult first the <a href="/jqgridwiki/doku.php?id=wiki:search_config" target="_blank">documentation</a></p>
<p>Regards</p></p>
]]></description>
        	        	<pubDate>Tue, 06 Aug 2013 11:16:49 +0300</pubDate>
        </item>
        <item>
        	<title>kike_4 on Filtertoolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29276</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29276</guid>
        	        	<description><![CDATA[<p>Ok, at last I&#39;ve done it! But now i have another problem. I dont want filter in every column, how can i hide filter in a column? And how can i put a "Filter" label ? Thanks</p>
]]></description>
        	        	<pubDate>Tue, 06 Aug 2013 11:09:04 +0300</pubDate>
        </item>
        <item>
        	<title>kike_4 on Filtertoolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29275</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/filtertoolbar#p29275</guid>
        	        	<description><![CDATA[<p>Hi! I dont have much idea of javascript, so i&#39;m a lost doing that. I have a classification grid and I want a filter in order to people can search his number, but i&#39;ve tried to do it following examples getting no result. I dont know where i have to type "filtertoolbar".</p>
<p>Here there is an example of my grid <a href="http://www.serbloc.es/Monitor/index.html" rel="nofollow" target="_blank">http://www.serbloc.es/Monitor/index.html</a>. And the plain javascript/html:</p>
<blockquote>
<div>&#60;script  type="text/javascript"&#62;</div>
<div>function refreshClasificacion(){</div>
<div>$.getJSON( "datos.json", function( datos ) {</div>
<div>$.each(datos.clasificacion.datos, function(key1, val1) {</div>
<div>jQuery("#gridclasificacion").setRowData(key1,(function() {</div>
<div>var r={};</div>
<div>$.each(datos.clasificacion.colmodel, function(key2, val2) {</div>
<div>r[val2.name]=val1[key2];</div>
<div>})</div>
<div>return r;</div>
<div>})()</div>
<div>);</div>
<div>})</div>
<div>jQuery("#gridclasificacion").trigger("reloadGrid");</div>
<div>});</div>
<div>setTimeout("refreshClasificacion()",500);</div>
<div>}</div>
<div>function loadClasificacion(){</div>
<div>$.getJSON( "datos.json", function( datos ) {</div>
<div>jQuery("#gridclasificacion").jqGrid({</div>
<div>datatype: "clientSide",</div>
<div>autowidth: true,</div>
<div>height: "auto",</div>
<div>colNames:datos.clasificacion.colnames,</div>
<div>colModel:datos.clasificacion.colmodel,</div>
<div>scrollOffset:0,</div>
<div>altRows: true,</div>
<div>datatype: &#39;local&#39;,</div>
<div>gridview: true,</div>
<div>gridComplete: function() {</div>
<div>$("tr.jqgrow:odd").css("background", "#8DD5D5");</div>
<div>},</div>
<div>rowNum:150,         sortname: datos.clasificacion.sortname,     }); 	     $.each(datos.clasificacion.datos, function(key1, val1) {       jQuery("#gridclasificacion").addRowData(key1,(function() {           var r={};           $.each(datos.clasificacion.colmodel, function(key2, val2) { 	            r[val2.name]=val1[key2];           })           return r;         })()       );     })     jQuery("#gridclasificacion").trigger("reloadGrid");   }); }</div>
<div>loadClasificacion();</div>
<div>refreshClasificacion(); &#60;/script&#62;  &#60;/head&#62;  &#60;body&#62; &#60;img src="CABECERA.jpg" width="100%"&#62;   &#60;label id="lbnombrecarrera"&#62;&#60;/label&#62;   &#60;div width="100%"&#62;     &#60;table id="gridclasificacion"&#62;&#60;/table&#62;    &#60;span id="result"&#62;&#60;/span&#62;   &#60;/div&#62;   &#60;div id="pager"&#62;&#60;/div&#62;    &#60;tbody&#62;&#60;/tbody&#62;  &#60;/body&#62;</div>
</blockquote>
<div>Sorry for my english and thank you in advance.</div>
]]></description>
        	        	<pubDate>Tue, 06 Aug 2013 10:32:17 +0300</pubDate>
        </item>
</channel>
</rss>