<?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: Loading Text Not Displaying JqGrid 3.6.2</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2</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/loading-text-not-displaying-jqgrid-3-6-2/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Loading Text Not Displaying JqGrid 3.6.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p30574</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p30574</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>It depends where and you use this.</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Sun, 04 May 2014 10:17:19 +0300</pubDate>
        </item>
        <item>
        	<title>pushpendraJaiswal on Loading Text Not Displaying JqGrid 3.6.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p30559</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p30559</guid>
        	        	<description><![CDATA[<blockquote>
<p><img class="spSmiley" style="margin:0" title="Confused" src="/blog/wp-content/forum-smileys/sf-confused.gif" alt="Confused" />JJslim said:</p>
<p>After looking through the source I figured out the problem. Since I was using a custom function to fetch and add the data to the grid instead of using the grid&#39;s built in ajax functionality the loading text was not displaying. I ended up creating two methods, which I call when I start my ajax request and when it returnsm that do the same thing the built in ajax functionality does to show and hide the loading text. Here they are for anyone else who might be in the same boat.</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9431' value='Select Code' data-codeid='sfcode9431' /></p>
<div class='sfcode' id='sfcode9431'>function beginGridRequest(gridName) {<br />&#160;&#160;&#160; var ts = $(&#34;#&#34; + gridName + &#34;.ui-jqgrid-btable&#34;)[0];<br />&#160;&#160;&#160; ts.grid.hDiv.loading = true;<br />&#160;&#160;&#160; if (ts.p.hiddengrid) { return; }<br />&#160;&#160;&#160; switch (ts.p.loadui) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;disable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;enable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;block&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#lui_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160; }<br />}</p>
<p>function endGridRequest(gridName) {<br />&#160;&#160;&#160; var ts = $(&#34;#&#34; + gridName + &#34;.ui-jqgrid-btable&#34;)[0];<br />&#160;&#160;&#160; ts.grid.hDiv.loading = false;<br />&#160;&#160;&#160; if (ts.p.hiddengrid) { return; }<br />&#160;&#160;&#160; switch (ts.p.loadui) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;disable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;enable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;block&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#lui_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160; }<br />}</p>
</div>
</blockquote>
<hr />
<p>Thanks man , you saved me ... although its not working for me but great help</p>
]]></description>
        	        	<pubDate>Wed, 30 Apr 2014 15:21:49 +0300</pubDate>
        </item>
        <item>
        	<title>pushpendraJaiswal on Loading Text Not Displaying JqGrid 3.6.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p30558</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p30558</guid>
        	        	<description><![CDATA[<blockquote>
<p><img class="spSmiley" style="margin:0" title="Confused" src="/blog/wp-content/forum-smileys/sf-confused.gif" alt="Confused" />JJslim said:</p>
<p>After looking through the source I figured out the problem. Since I was using a custom function to fetch and add the data to the grid instead of using the grid&#39;s built in ajax functionality the loading text was not displaying. I ended up creating two methods, which I call when I start my ajax request and when it returnsm that do the same thing the built in ajax functionality does to show and hide the loading text. Here they are for anyone else who might be in the same boat.</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5307' value='Select Code' data-codeid='sfcode5307' /></p>
<div class='sfcode' id='sfcode5307'>function beginGridRequest(gridName) {<br />&#160;&#160;&#160; var ts = $(&#34;#&#34; + gridName + &#34;.ui-jqgrid-btable&#34;)[0];<br />&#160;&#160;&#160; ts.grid.hDiv.loading = true;<br />&#160;&#160;&#160; if (ts.p.hiddengrid) { return; }<br />&#160;&#160;&#160; switch (ts.p.loadui) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;disable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;enable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;block&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#lui_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160; }<br />}</p>
<p>function endGridRequest(gridName) {<br />&#160;&#160;&#160; var ts = $(&#34;#&#34; + gridName + &#34;.ui-jqgrid-btable&#34;)[0];<br />&#160;&#160;&#160; ts.grid.hDiv.loading = false;<br />&#160;&#160;&#160; if (ts.p.hiddengrid) { return; }<br />&#160;&#160;&#160; switch (ts.p.loadui) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;disable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;enable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;block&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#lui_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160; }<br />}</p>
</div>
</blockquote>
<hr />
<p>Thanks man , you saved me ... although its not working for me but great help</p>
]]></description>
        	        	<pubDate>Wed, 30 Apr 2014 15:21:47 +0300</pubDate>
        </item>
        <item>
        	<title>JJslim on Loading Text Not Displaying JqGrid 3.6.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15365</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15365</guid>
        	        	<description><![CDATA[<p>After looking through the source I figured out the problem. Since I was using a custom function to fetch and add the data to the grid instead of using the grid&#39;s built in ajax functionality the loading text was not displaying. I ended up creating two methods, which I call when I start my ajax request and when it returnsm that do the same thing the built in ajax functionality does to show and hide the loading text. Here they are for anyone else who might be in the same boat.</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit950' value='Select Code' data-codeid='sfcode950' /></p>
<div class='sfcode' id='sfcode950'>function beginGridRequest(gridName) {<br />&#160;&#160;&#160; var ts = $(&#34;#&#34; + gridName + &#34;.ui-jqgrid-btable&#34;)[0];<br />&#160;&#160;&#160; ts.grid.hDiv.loading = true;<br />&#160;&#160;&#160; if (ts.p.hiddengrid) { return; }<br />&#160;&#160;&#160; switch (ts.p.loadui) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;disable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;enable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;block&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#lui_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).show();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160; }<br />}</p>
<p>function endGridRequest(gridName) {<br />&#160;&#160;&#160; var ts = $(&#34;#&#34; + gridName + &#34;.ui-jqgrid-btable&#34;)[0];<br />&#160;&#160;&#160; ts.grid.hDiv.loading = false;<br />&#160;&#160;&#160; if (ts.p.hiddengrid) { return; }<br />&#160;&#160;&#160; switch (ts.p.loadui) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;disable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;enable&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; case &#34;block&#34;:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#lui_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#34;#load_&#34; + ts.p.id).hide();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;<br />&#160;&#160;&#160; }<br />}</p>
</div>
]]></description>
        	        	<pubDate>Thu, 04 Mar 2010 20:45:25 +0200</pubDate>
        </item>
        <item>
        	<title>JJslim on Loading Text Not Displaying JqGrid 3.6.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15311</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15311</guid>
        	        	<description><![CDATA[<p>Appologies. Removed column info for brevity. Everything else in the grid functions great I just don&#39;t seem to get any loading indicator even thought the results comes back ok. We&#39;ll start with this code and if I need more then I can post. Thanks in advance.</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit8987' value='Select Code' data-codeid='sfcode8987' /></p>
<div class='sfcode' id='sfcode8987'>grid.jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: getReports,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: [20, 50, 100, 250],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 20,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: sortBy,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: $(&#39;#pageNavigation&#39;),<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: sortOrder,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; width: 726,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; shrinkToFit: false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: 477,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; altRows: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; loadui: &#34;block&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; loadtext: &#34;Refreshing Grid&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; postData: { businessGroupId: businessGroupId, reportQueueGroupId: queueGroupId },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; emptyrecords: &#34;No records to view&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: &#39;Reports&#39;<br />&#160;&#160;&#160; });</div>
]]></description>
        	        	<pubDate>Tue, 02 Mar 2010 21:40:54 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Loading Text Not Displaying JqGrid 3.6.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15272</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15272</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>As I again and again say - I do not have Idea when I do not say the code and a lot of additional information</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 01 Mar 2010 20:59:39 +0200</pubDate>
        </item>
        <item>
        	<title>JJslim on Loading Text Not Displaying JqGrid 3.6.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15178</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/loading-text-not-displaying-jqgrid-3-6-2#p15178</guid>
        	        	<description><![CDATA[<p>For some reason the loading text does not display when the grid loads its data. Any ideas?</p>
</p>
<p>Thanks,</p>
<p>Jarrod</p>
]]></description>
        	        	<pubDate>Fri, 26 Feb 2010 15:36:45 +0200</pubDate>
        </item>
</channel>
</rss>