<?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: Form is disabled on load - JqGrid - SubGrid</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/form-is-disabled-on-load-jqgrid-subgrid</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/bugs/form-is-disabled-on-load-jqgrid-subgrid/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>soujanyakumar on Form is disabled on load - JqGrid - SubGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/form-is-disabled-on-load-jqgrid-subgrid#p24279</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/form-is-disabled-on-load-jqgrid-subgrid#p24279</guid>
        	        	<description><![CDATA[<p>Tony,</p>
</p>
<p>Thanks for your response.</p>
</p>
<p>I am using IE 8.</p>
</p>
<p>I&#160;deleted all JS files and CSS&#160;and Lib.Web.MVC and readded from the&#160;project where this was working.&#160;&#160;None of them worked for me. I verified the Doctype and looked good.&#160;</p>
</p>
<p>I deleted the complete project which had the issue and reconstructed from scratch using the POC version, that worked. Only thing different was I added all of the JQGrid library using the Nuget.</p>
</p>
<p>By the way, I have just started using the jqGrid in MVC 3 app using Razor. So for, I very impressed by how easy it is to use. It is powerful as well.</p>
</p>
<p>Thanks</p>
<p>Kumar</p>
]]></description>
        	        	<pubDate>Mon, 15 Aug 2011 02:54:34 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Form is disabled on load - JqGrid - SubGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/form-is-disabled-on-load-jqgrid-subgrid#p24248</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/form-is-disabled-on-load-jqgrid-subgrid#p24248</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>There is a missing information on in which browsers is this.</p>
<p>It seems that in the real project you include some CSS or JS files which are the reason for this.</p>
<p>or something elese. (Plese check your DOCTYPE)</p>
<p>If possible try to include only the needed jqgrid files and if this work, include step by step the other files in order to</p>
<p>find the problem</p>
</p>
<p>Regards&#160;</p>
]]></description>
        	        	<pubDate>Sun, 14 Aug 2011 09:50:27 +0300</pubDate>
        </item>
        <item>
        	<title>soujanyakumar on Form is disabled on load - JqGrid - SubGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/form-is-disabled-on-load-jqgrid-subgrid#p24238</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/form-is-disabled-on-load-jqgrid-subgrid#p24238</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>When I include the subgrid into a project and start the application, all of the form is disabled except the text area of the JqGrid. Looks like I am doing something wrong with the includes and references</p>
</p>
<p>I have tested this out in another Subgrid in a demo project I downloaded and it works fine there but not in the real project.</p>
</p>
<p>This is the code that is not working and below are my includes</p>
<p>$(document).ready(function () {</p>
<p>$(&#39;#jqgOrders&#39;).jqGrid({</p>
<p>//url from wich data should be requested</p>
<p>url: &#39;@Url.Action(</p>
<p>//type of data</p>
<p>datatype: &#39;json&#39;,</p>
<p>//url access method type</p>
<p>mtype: &#39;POST&#39;,</p>
<p>//columns names</p>
<p>colNames: [&#39;OrderID&#39;, &#39;Customer&#39;, &#39;Employee&#39;, &#39;Employee&#39;],</p>
<p>//columns model</p>
<p>colModel: [</p>
<p>{ name: &#39;OrderID&#39;, index: &#39;OrderID&#39;, align: &#39;center&#39;, width: 200 },</p>
<p>{ name: &#39;Customer&#39;, index: &#39;CustomerID&#39;, align: &#39;center&#39;, width: 150 },</p>
<p>{ name: &#39;Employee&#39;, index: &#39;EmployeeID&#39;, align: &#39;center&#39;, width: 150 },</p>
<p>{ name: &#39;Employee&#39;, index: &#39;EmployeeID&#39;, align: &#39;center&#39;, width: 150, formatter:&#39;showlink&#39;, formatoptions:{baseLinkUrl:&#39;<a href="http://www.trirand.com/jqgridwiki/doku.php&#038;#039" rel="nofollow" target="_blank">http://www.trirand.com/jqgridwiki/doku.php&#038;#039</a>;, addParam: &#39;&#38;action=edit&#39;} }</p>
<p>],</p>
<p>//pager for grid</p>
<p>pager: $(&#39;#jqgpOrders&#39;),</p>
<p>//number of rows per page</p>
<p>rowNum: 10,</p>
<p>//initial sorting column</p>
<p>sortname: &#39;OrderID&#39;,</p>
<p>//SET Width</p>
<p>width: [200, 200, 200, 200],</p>
<p>//initial sorting direction</p>
<p>sortorder: &#39;asc&#39;,</p>
<p>//we want to display total records count</p>
<p>viewrecords: true,</p>
<p>//grid height</p>
<p>height: &#39;100%&#39;,</p>
<p>//enable subgrid</p>
<p>subGrid: true,</p>
<p>//subrid model</p>
<p>// subGridModel: [{</p>
<p>// //subgrid columns names</p>
<p>// name: [&#39;Suite&#39;, &#39;Status&#39;, &#39;Report Link&#39;],</p>
<p>// //subgrid columns widths</p>
<p>// width: [200, 100, 100],</p>
<p>// //subrig columns aligns</p>
<p>// align: [&#39;left&#39;, &#39;left&#39;, &#39;left&#39;],</p>
<p>// formatter: [&#39;showlink&#39;,&#39;showlink&#39;,&#39;showlink&#39;]</p>
<p>// }],</p>
<p>subGridModel: [{</p>
<p>//subgrid columns names</p>
<p>name: [&#39;Suite&#39;, &#39;Status&#39;],</p>
<p>//subgrid columns widths</p>
<p>width: [200, 100],</p>
<p>//subrig columns aligns</p>
<p>align: [&#39;left&#39;, &#39;left&#39;],</p>
<p>}],</p>
<p>//url from which subgrid data should be requested</p>
<p>subGridUrl: &#39;@Url.Action(</p>
<p>});</p>
<p>});</p>
<p>
"Result")&#39;,"ResultDetails")&#39;&#60;/script&#62;</p>
<p>}</p>
</p>
<p>&#60;</p>
<p>script src="@Url.Content("~/Scripts/jquery-1.5.2.min.js")" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="@Url.Content("~/Scripts/jquery-ui-1.8.7.min.js")" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="@Url.Content("~/Scripts/jquery-ui.multiselect.js")" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="@Url.Content("~/Scripts/jquery.tmpl.min.js")" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="@Url.Content("~/Scripts/jquery.jqGrid.locale-en-4.1.2.js")" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="@Url.Content("~/Scripts/jquery.jqGrid-4.1.2.min.js")" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>@RenderSection(</p>
<p>"JavaScript", false)</p>
]]></description>
        	        	<pubDate>Sat, 13 Aug 2011 01:45:34 +0300</pubDate>
        </item>
</channel>
</rss>