<?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: Drag And Drop does not work</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work</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/drag-and-drop-does-not-work/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>jawar on Drag And Drop does not work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20903</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20903</guid>
        	        	<description><![CDATA[<p>Nevermind...</p>
</p>
<p>After reading the documentation in the jQueryUI page... I found out I was missing one Javascript file... This one:</p>
</p>
<p>&#60;script src="/assets/scripts/jquery-ui-1.8.6.custom.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
</p>
<p>Thanks anyway... jqGrid is a great tool!</p>
]]></description>
        	        	<pubDate>Fri, 19 Nov 2010 05:19:10 +0200</pubDate>
        </item>
        <item>
        	<title>jawar on Drag And Drop does not work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20902</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20902</guid>
        	        	<description><![CDATA[<p>Can anyone give me a hand with this?</p>
<p>I&#39;m kind of new with jquery... In the example it is mentioned that this feature (drag and drop) uses jquery UI draggable and droppable... Is this something that I have to add besides what I already included???</p>
</p>
<p>I really want this feature to work with the jqGrid...</p>
</p>
<p>Thanks...</p></p>
]]></description>
        	        	<pubDate>Fri, 19 Nov 2010 04:57:10 +0200</pubDate>
        </item>
        <item>
        	<title>jawar on Drag And Drop does not work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20840</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20840</guid>
        	        	<description><![CDATA[<p>Anyone?</p>
]]></description>
        	        	<pubDate>Tue, 16 Nov 2010 01:46:34 +0200</pubDate>
        </item>
        <item>
        	<title>jawar on Drag And Drop does not work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20788</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/drag-and-drop-does-not-work#p20788</guid>
        	        	<description><![CDATA[<p>Hi,</p>
</p>
<p>I&#39;m trying to reproduce the Drag And Drop rows between grids example that you have in the Demo page... However it is not working, when I try to drag a row from one grid to another it doesn&#39;t even change the mouse cursor!</p>
</p>
<p><strong>Here&#39;s my Javascript Code:</strong></p>
</p>
<p>&#160;&#160;&#160; jQuery("#gridEquipos").jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;url:urlPagina+"&#38;idGrid=gridEquipos", <br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: "json",<br />&#160;&#160; &#160;&#160;&#160; &#160;mtype:&#39;GET&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;ID Equipo&#39;,&#39;Nombre Equipo&#39;],<br />&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;id_equipo&#39;,index:&#39;id_equipo&#39;, width:60},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;nombre_equipo&#39;,index:&#39;nombre_equipo&#39;, width:250},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; ],<br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum:10, <br />&#160;&#160; &#160;&#160;&#160; &#160;rowList:[10,20,30], <br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#pagerEquipos&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;id_equipo&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortorder: "desc", <br />&#160;&#160; &#160;&#160;&#160; &#160;caption: "Lista Total de Equipos",<br />&#160;&#160; &#160;&#160;&#160; &#160;height:200,<br />&#160;&#160; &#160;&#160;&#160; &#160;editurl:urlEditPagina<br />&#160;&#160; &#160;});<br />&#160;&#160; &#160;<br />&#160;&#160; &#160;jQuery("#gridEquipos").jqGrid(&#39;navGrid&#39;,&#39;#pagerEquipos&#39;,{edit:false, add:false, del:false},<br />&#160;&#160; &#160;&#160;&#160; &#160;{},//edit<br />&#160;&#160; &#160;&#160;&#160; &#160;{},//add<br />&#160;&#160; &#160;&#160;&#160; &#160;{},//delete<br />&#160;&#160; &#160;&#160;&#160; &#160;{}//search<br />&#160;&#160; &#160;); </p>
<p>&#160;&#160; &#160;//EQUIPOS DEL TORNEO<br />&#160;&#160; &#160;jQuery("#gridEquiposTorneo").jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;url:urlPagina+"&#38;idGrid=gridEquiposTorneo", <br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: "json",<br />&#160;&#160; &#160;&#160;&#160; &#160;mtype:&#39;GET&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;ID Equipo&#39;,&#39;Nombre Equipo&#39;],<br />&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;id_equipo&#39;,index:&#39;id_equipo&#39;, width:60},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;nombre_equipo&#39;,index:&#39;nombre_equipo&#39;, width:250},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; ],<br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum:10, <br />&#160;&#160; &#160;&#160;&#160; &#160;rowList:[10,20,30], <br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#pagerEquiposTorneo&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;id_equipo&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;sortorder: "desc", <br />&#160;&#160; &#160;&#160;&#160; &#160;caption: "Equipos del Torneo",<br />&#160;&#160; &#160;&#160;&#160; &#160;height:200,<br />&#160;&#160; &#160;&#160;&#160; &#160;editurl:urlEditPagina<br />&#160;&#160; &#160;});<br />&#160;&#160; &#160;<br />&#160;&#160; &#160;jQuery("#gridEquiposTorneo").jqGrid(&#39;navGrid&#39;,&#39;#pagerEquiposTorneo&#39;,{edit:false, add:false, del:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;{},//edit<br />&#160;&#160; &#160;&#160;&#160; &#160;{},//add<br />&#160;&#160; &#160;&#160;&#160; &#160;{delData:{idGrid:"gridEquiposTorneo"},<br />&#160;&#160; &#160;&#160;&#160; &#160; reloadAfterSubmit:true,<br />&#160;&#160; &#160;&#160;&#160; &#160; afterComplete : function(response, postdata){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$("#gridGrupos1").trigger("reloadGrid");<br />&#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;},//delete<br />&#160;&#160; &#160;&#160;&#160; &#160;{}//search<br />&#160;&#160; &#160;);</p>
</p>
<p>//CONECTAR CON ESTILO DRAG AND DROP LOS GRIDS DE EQUIPOS <br />&#160;&#160; &#160;jQuery("#gridEquiposTorneo").jqGrid(&#39;gridDnD&#39;,{connectWith:&#39;#gridEquipos&#39;});</p>
<p><strong>And here it is what I have in the html page in the top:</strong></p>
</p>
<p>&#60;link rel="stylesheet" type="text/css" media="screen" href="assets/styles/jqueryUI/jquery-ui-1.8.6.custom.css" /&#62;<br />&#60;link rel="stylesheet" type="text/css" media="screen" href="assets/styles/ui.jqgrid.css" /&#62;<br />&#60;script src="/assets/scripts/i18n/grid.locale-es.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="/assets/scripts/jquery.jqGrid.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>am I missing something?</p></p>
]]></description>
        	        	<pubDate>Fri, 12 Nov 2010 23:58:30 +0200</pubDate>
        </item>
</channel>
</rss>