Title: [Solved] Error on Drag and Drop Datagrid Post by: Wojak on July 17, 2023, 03:34:13 PM Hi,
Am having a problem w drag and drop on my Datagrid Code: Uncaught TypeError: Cannot read properties of undefined (reading 'jQuery3310090322002266437942') at Q.get (jquery.min.js:2:32502) at Q.access (jquery.min.js:2:32622) at Function.data (jquery.min.js:2:33477) at Object.options (jquery.easyui.min.js:12493:12) at $.fn.datagrid (jquery.easyui.min.js:12356:35) at getDraggingRow (datagrid-dnd.js:390:27) at HTMLTableRowElement.onBeforeDrag (datagrid-dnd.js:152:25) at HTMLTableRowElement.<anonymous> (jquery.easyui.min.js:638:21) at HTMLTableRowElement.dispatch (jquery.min.js:2:41772) at y.handle (jquery.min.js:2:39791) And also is there a way to import drag and drop to datalist? Title: Re: Error on Drag and Drop Datagrid Post by: jarry on July 18, 2023, 11:32:04 PM This code works fine.
Code: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jQuery EasyUI Demo</title> <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/default/easyui.css"> <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/icon.css"> <script type="text/javascript" src="https://www.jeasyui.com/easyui/jquery.min.js"></script> <script type="text/javascript" src="https://www.jeasyui.com/easyui/jquery.easyui.min.js"></script> <script type="text/javascript" src="https://www.jeasyui.com/easyui/datagrid-dnd.js"></script> <script> var data = [ { "text": "Epson WorkForce 845", "group": "Printer" }, { "text": "Canon PIXMA MG5320", "group": "Printer" }, { "text": "HP Deskjet 1000 Printer", "group": "Printer" }, { "text": "Cisco RV110W-A-NA-K9", "group": "Firewall" }, { "text": "ZyXEL ZyWALL USG50", "group": "Firewall" }, { "text": "NETGEAR FVS318", "group": "Firewall" }, { "text": "Logitech Keyboard K120", "group": "Keyboard" }, { "text": "Microsoft Natural Ergonomic Keyboard 4000", "group": "Keyboard" }, { "text": "Logitech Wireless Touch Keyboard K400", "group": "Keyboard" }, { "text": "Logitech Gaming Keyboard G110", "group": "Keyboard" }, { "text": "Nikon COOLPIX L26 16.1 MP", "group": "Camera" }, { "text": "Canon PowerShot A1300", "group": "Camera" }, { "text": "Canon PowerShot A2300", "group": "Camera" } ] $(function () { $('#dl').datalist({ data: data, onLoadSuccess: function () { $(this).datagrid('enableDnd'); } }); }) </script> </head> <body> <div id="dl" title="DataList" style="width:400px;height:250px"> </div> </body> </html> Title: [SOLVED] Error on Drag and Drop Datagrid Post by: Wojak on July 20, 2023, 10:37:50 AM Ok, i found it. I needed also title, field was not enough.
|