<?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: navgrid example help</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help</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/navgrid-example-help/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>ploppy on navgrid example help</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11365</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11365</guid>
        	        	<description><![CDATA[<p>thank you very much Rumen. much appreciated.</p>
]]></description>
        	        	<pubDate>Sun, 01 Nov 2009 10:29:35 +0200</pubDate>
        </item>
        <item>
        	<title>Rumen Stankov on navgrid example help</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11363</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11363</guid>
        	        	<description><![CDATA[<p>The first parameter to navButtonAdd is the ID of pager, e.g. in your case "#pager2". The second parameter was just taken out of context from the example, in reality, you just do not need it. For example this is how you can have a "Toggle Filtering ToolBar" button in your toolbar</p>
<p>.navGrid(&#39;#pager2&#39;,{edit:false,add:false,del:false,search:false,refresh:false}) .navButtonAdd("#pager2",{caption:"Toggle",title:"Toggle Search Toolbar", buttonicon :&#39;ui-icon-pin-s&#39;, 	onClickButton:function(){ 		mygrid[0].toggleToolbar() 	}  })</p>
<p>There is a PDF help file in the Download section of this site, please download and open it and check out the "Custom Buttons" section.</p>
</p>
<p>Rumen Stankov</p>
<p>Trirand</p>
]]></description>
        	        	<pubDate>Sun, 01 Nov 2009 08:00:33 +0200</pubDate>
        </item>
        <item>
        	<title>ploppy on navgrid example help</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11360</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11360</guid>
        	        	<description><![CDATA[<p>any help with this please? even read the manual would have been helpful. (which i have) many thanks</p>
]]></description>
        	        	<pubDate>Sun, 01 Nov 2009 06:13:55 +0200</pubDate>
        </item>
        <item>
        	<title>ploppy on navgrid example help</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11346</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/navgrid-example-help#p11346</guid>
        	        	<description><![CDATA[<p>hi</p>
<p>&#160;i have been looking at&#160;<a href="http://www.secondpersonplural.ca/jqgriddocs/index.htm&#160;for" rel="nofollow" target="_blank"><a href="http://www.secondpersonplural" rel="nofollow">http://www.secondpersonplural</a>......m&#160;for</a> examples on jqgrid. there is an example that i am interested in following on navigator, but cannot get the search(find) function to work. in the code,</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit6163' value='Select Code' data-codeid='sfcode6163' /></p>
<div class='sfcode' id='sfcode6163'>
<p>jQuery(<span class="codestring">"#tbleditable"</span>).navGrid(<span class="codestring">&#39;#pcustbut&#39;</span>,{edit:<span class="literals">false</span>,add:<span class="literals">false</span>,del:<span class="literals">false</span>})<br />&#160;&#160; .navButtonAdd(<span class="codestring">&#39;#pcustbut&#39;</span>,{caption:<span class="codestring">"Edit"</span>,<br />&#160;&#160; onClickButton:<span class="programcontrol">function</span>(){<br />&#160;&#160;&#160;&#160;&#160; <span class="programcontrol">var</span> gsr = jQuery(<span class="codestring">"#custbut"</span>).getGridParam(<span class="codestring">&#39;selrow&#39;</span>);<br />&#160;&#160;&#160;&#160;&#160; <span class="programcontrol">if</span>(gsr){<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery(<span class="codestring">"#custbut"</span>).GridToForm(gsr,<span class="codestring">"#order"</span>);<br />&#160;&#160;&#160;&#160;&#160; } <span class="programcontrol">else</span> {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert(<span class="codestring">"Please select Row"</span>)<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;&#160; <br />} <br />});</p>
</div>
<p>what do the #pcustbut and #order relate to? for example, in the &#160;code i have, do they relate to list2 and pager2?</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1972' value='Select Code' data-codeid='sfcode1972' /></p>
<div class='sfcode' id='sfcode1972'>
<p>&#60;table id="list2" class="scroll" cellpadding="0" cellspacing="0"&#62;&#60;/table&#62;<br />&#60;div id="pager2" class="scroll" style="text-align:left;"&#62;&#60;/div&#62;</p>
</div>
<p>also, the search button is appearing on the grid, but when i press it does not find anything. do i need a php page to collect data? if so, is there a code example somewhere? many thanks</p>
]]></description>
        	        	<pubDate>Sat, 31 Oct 2009 07:26:30 +0200</pubDate>
        </item>
</channel>
</rss>