<?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: ASP .NET MVC2  can't see the search button</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/asp-net-mvc2-cant-see-the-search-button</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/asp-net-mvc2-cant-see-the-search-button/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on ASP .NET MVC2  can't see the search button</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/asp-net-mvc2-cant-see-the-search-button#p14218</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/asp-net-mvc2-cant-see-the-search-button#p14218</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The first parameter for the navGrid is the pager Element. Also try</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4807' value='Select Code' data-codeid='sfcode4807' /></p>
<div class='sfcode' id='sfcode4807'>
<p>&#160; $("#list").navGrid(&#39;#pager&#39;l,...)</p>
</div>
<p>Best Regsrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 24 Jan 2010 19:03:29 +0200</pubDate>
        </item>
        <item>
        	<title>Maxi on ASP .NET MVC2  can't see the search button</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/asp-net-mvc2-cant-see-the-search-button#p14019</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/asp-net-mvc2-cant-see-the-search-button#p14019</guid>
        	        	<description><![CDATA[</p>
<p>Hi guys, I&#39;m using ASP .NET MVC2 and can&#39;t see the search button on the grid (the same goes for the delete button).</p>
<p>But i can see using MVC 1.</p>
</p>
<p>Any Ideas?</p>
</p>
<p>Here the code of the grid :</p>
</p>
<p>&#60;script type="text/javascript"&#62;</p>
<p>&#160;&#160; &#160; jQuery(document).ready(function() {</p>
<p>&#160;&#160; &#160; &#160; &#160; jQuery("#list").jqGrid({</p>
<p>&#160;&#160; &#160; &#160; &#160; url: &#39;&#60;%= Url.Action("ObtenerDatosGrid") %&#62;&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; datatype: &#39;json&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; mtype: &#39;GET&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; colNames: [&#39;Nombre&#39;, &#39;Activo&#39;],</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; colModel: [</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160;{ index: &#39;Nombre&#39;, width: 150, align: &#39;left&#39;, search: true, stype: &#39;text&#39;, searchoptions: { sopt: [&#39;eq&#39;, &#39;ne&#39;]} },</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160;{ index: &#39;Activo&#39;, width: 80, align: &#39;center&#39;, &#160;search: false}],</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; pager: jQuery(&#39;#pager&#39;),</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; rowNum: 20,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; rowList: [20, 50, 100],</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; sortname: &#39;Nombre&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; sortorder: &#39;asc&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; viewrecords: true,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; imgpath: &#39;/content/cupertino/images&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; caption: &#39;Listado de Prestaciones&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; height: 400,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; width: 800</p>
<p>&#160;&#160; &#160; &#160; &#160; });</p>
<p>&#160;&#160; &#160; &#160; &#160; $("#list").navGrid(</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;null,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;{ refresh: true, add: false, edit: false, del: true, search: true },</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;null, // par&#225;metros para el alta</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;null, // par&#225;metros para la edici&#243;n</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;{ &#160; &#160; // par&#225;metros para la eliminaci&#243;n</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;url: &#39;&#60;%= Url.Action("DeleteGrid") %&#62;&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;width: 500,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;afterSubmit: function(r, d) {</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;return [r.responseText == "", r.responseText];</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;}</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160;}</p>
<p>&#160;&#160; &#160; &#160; &#160;);</p>
<p>&#160;&#160; &#160; });&#160;</p>
<p>&#60;/script&#62; &#160; &#160;</p>
</p>
<p>Thanks !!!!</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 04:16:05 +0200</pubDate>
        </item>
</channel>
</rss>