<?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: Forms and modal dialogues not dragging or resizing</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/forms-and-modal-dialogues-not-dragging-or-resizing</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/forms-and-modal-dialogues-not-dragging-or-resizing/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>bobmitch on Forms and modal dialogues not dragging or resizing</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/forms-and-modal-dialogues-not-dragging-or-resizing#p14434</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/forms-and-modal-dialogues-not-dragging-or-resizing#p14434</guid>
        	        	<description><![CDATA[<p>Yes, going back to 1.3.2 fixes this.</p>
<p>The problem is with jqGrid though - because the jqueryui dialog function when called on its own works fine on the new version, and can be dragged.</p>
</p>
<p>ie.</p>
<p>$("#foo").dialog();</p>
<p>//is ok</p>
</p>
<p>&#160;Something about how jqgrid calls it must be different. &#160; Hope this can be fixed - the new live events are much needed in 1.4 😉</p>
]]></description>
        	        	<pubDate>Mon, 01 Feb 2010 08:54:26 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Forms and modal dialogues not dragging or resizing</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/forms-and-modal-dialogues-not-dragging-or-resizing#p14430</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/forms-and-modal-dialogues-not-dragging-or-resizing#p14430</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The problem is maybe with jQueryUI 1.81a1. I&#39;m not sure if it is compatible with jQuery 1.4</p>
<p>The simple test is to go back to jQuery 1.3.2 and see the result</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 01 Feb 2010 08:34:15 +0200</pubDate>
        </item>
        <item>
        	<title>bobmitch on Forms and modal dialogues not dragging or resizing</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/forms-and-modal-dialogues-not-dragging-or-resizing#p14421</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/forms-and-modal-dialogues-not-dragging-or-resizing#p14421</guid>
        	        	<description><![CDATA[<p>Full install of jqgrid 3.6.2 (all modules selected).&#160; jQuery 1.41.&#160; jQueryUI 1.8a1</p>
</p>
<p>Drag on form dialogs is supposed to be true by default?</p>
</p>
<p>Dialog function from jqueryUI works fine.&#160; Clicking edit selected button on pager for the following grid brings up an form dialog, but it cant be dragged/moved.</p>
</p>
<p>Grid code:</p>
</p>
<blockquote>
<p>$("#business_table").jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; url:&#39;generate_table/business&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; editurl:&#39;edit_table/business&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cellsubmit:&#39;remote&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cellurl:&#39;edit_cell/business&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; afterSaveCell:function () {$.jGrowl("Field updated!")},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "json",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames:[&#39;Id&#39;,&#39;Business Name&#39;, &#39;Contact&#39;, &#39;Address 1&#39;, &#39;Address 2&#39;, &#39;Address 3&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel:[<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;id&#39;,index:&#39;id&#39;, width:90, hidden:true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;name&#39;,index:&#39;name&#39;, width:120, editable:true, edittype:&#39;text&#39;, editrules:&#39;required&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;contact&#39;,index:&#39;contact&#39;, width:120,&#160; editable:true, edittype:&#39;text&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;address1&#39;,index:&#39;address1&#39;, width:120,&#160; editable:true, edittype:&#39;text&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;address2&#39;,index:&#39;address2&#39;, width:120,&#160; editable:true, edittype:&#39;text&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;address3&#39;,index:&#39;address3&#39;, width:120,&#160; editable:true, edittype:&#39;text&#39;}<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum:10,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList:[10,20,30],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#business_pager&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;name&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: "desc",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption:"Business Admin",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cellEdit: false<br />&#160;&#160;&#160; });<br />&#160;&#160;&#160; $("#business_table").jqGrid(&#39;navGrid&#39;,&#39;#business_pager&#39;,{edit:true,add:false,del:false});</p>
</blockquote>
]]></description>
        	        	<pubDate>Sun, 31 Jan 2010 22:11:53 +0200</pubDate>
        </item>
</channel>
</rss>