<?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: JQGrid "stuck" in edit mode incorrectly</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-stuck-in-edit-mode-incorrectly</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/jqgrid-stuck-in-edit-mode-incorrectly/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on JQGrid "stuck" in edit mode incorrectly</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-stuck-in-edit-mode-incorrectly#p16701</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-stuck-in-edit-mode-incorrectly#p16701</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>This seemed to be a CSS related problem. Also be a sure you load the correct css. If you have problem with this copy the css from the project that this work.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 26 Apr 2010 14:54:30 +0300</pubDate>
        </item>
        <item>
        	<title>jschatz on JQGrid "stuck" in edit mode incorrectly</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-stuck-in-edit-mode-incorrectly#p16639</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-stuck-in-edit-mode-incorrectly#p16639</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I&#39;m having a problem where my JQgrid page is "stuck" in modal view.</p>
<p>I&#39;m using:</p>
<ul>
<li>JQGrid 3.6.4</li>
<li>JQuery UI 1.8</li>
<li>JQuery 1.4.2</li>
<li>ASP.NET MVC 2 / ASP.NET 3.5</li>
</ul>
<p>I&#39;ve used JQGrid on other projects without any problem: Here is the HTML:</p>
<p>&#160;&#160;&#160; &#60;table id="tblGrid" class="scroll" cellpadding="0" cellspacing="0"&#62;&#60;/table&#62;<br />&#160;&#160;&#160; &#60;div id="divPager" class="scroll" style="text-align:center;"&#62;&#60;/div&#62;</p>
<p>Here is the JavaScript:</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $("#tblGrid").jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;Users/GetList&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;Last Name&#39;, &#39;First Name&#39;, &#39;Email&#39;, &#39;Phone&#39;, &#39;Role&#39;, &#39;&#39;, &#39;&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;LastName&#39;, index: &#39;LastName&#39;, width: 200 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;FirstName&#39;, index: &#39;FirstName&#39;, width: 150 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;Email&#39;, index: &#39;Email&#39;, width: 300 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;Phone&#39;, index: &#39;Phone&#39;, width: 150 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;Role&#39;, index: &#39;Role&#39;, width: 200 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;UserId&#39;, index: &#39;UserId&#39;, align: &#39;center&#39;, sortable: false, width: 150 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;Empty&#39;, index: &#39;Empty&#39;, align: &#39;center&#39;, hidden: true, sortable: false, width: 815 }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#divPager&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;LastName&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#39;desc&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; multiselect: false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "json",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype: &#39;POST&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 50,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: [25, 50, 100, 250, 500],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; scrollOffset: 0,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; width: 750,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: &#39;auto&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: "&#38;nbsp;"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
<p>This is the JSON that is coming back from my controller:</p>
<p>{"total":0,"page":1,"records":2,"rows":[{"id":"4","cell":["User","Sample","u003ca href="mailto:sUser@somewhere.com"u003ejUser@somewhere.comu003c/au003e","","Administrator","u003ca href="/users/edit/4"u003eView / Editu003c/au003e"]},{"id":"1","cell":["Administrator","System","u003ca href="mailto:administrator@somewhere.com"u003eadministrator@somewhere.comu003c/au003e",null,"Administrator","u003ca href="/users/edit/1"u003eView / Editu003c/au003e"]}]}</p>
</p>
<p>Here is a link to the screenshot where you can see the "stuck" state:</p>
<p><a href="http://www.jasonschatz.com/stuckmodal.jpg" rel="nofollow" target="_blank">http://www.jasonschatz.com/stuckmodal.jpg</a></p>
</p>
<p>Anyone have any ideas? I&#39;ve spent hours now trying to figure it out, it works fine on other projects, no idea what&#39;s wrong here.</p>
<p>Thanks,</p>
<p>Jason</p>
]]></description>
        	        	<pubDate>Fri, 23 Apr 2010 23:58:11 +0300</pubDate>
        </item>
</channel>
</rss>