[FIXED] [#1438] [4.3.0] Drag problem in IE e Firefox

  1. #1

    [FIXED] [#1438] [4.3.0] Drag problem in IE e Firefox

    Hi,
    see my example, when I drag doing click on image in IE doens't work in Firefox move only the image and it needed another click.
    In ext.net 3.3 works fine.
    Please help me.
    Thank you

    Jimmy

    <%@ Page Language="C#" %>
    
    
    <!DOCTYPE html>
    
    
    <html>
    <head runat="server">
        <title>Draggable Panel - Ext.NET Examples</title>
        <link href="/resources/css/examples.css" rel="stylesheet" />
    
    
        <style>
            .noselect {
                -webkit-touch-callout: none; /* iOS Safari */
                -webkit-user-select: none; /* Safari */
                -moz-user-select: none; /* Firefox */
                -ms-user-select: none; /* Internet Explorer/Edge */
                user-select: none; /* Non-prefixed version, currently
                                      supported by Chrome and Opera */
            }
        </style>
    
    
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
    
    
            <ext:Panel ID="pnlParent" runat="server" Width="800" Height="800" Border="true">
                <Items>
    
    
                    <ext:Panel
                        runat="server"
                        Title="Drag Me"
                        Icon="ArrowNsew"
                        Width="40"
                        Height="40"
                        Draggable="true"
                        Header="false"
                        Border="true"
                        X="50"
                        Y="50"
                        Disable="true"
                        BodyCls="noselect"
                        >
                        <Content>
                            <image src="http://lorempixel.com/30/30" />
                        </Content>
                    </ext:Panel>
    
    
    
    
                </Items>
            </ext:Panel>
    
    
    
    
        </form>
    </body>
    </html>
    Last edited by fabricio.murta; Jun 14, 2017 at 1:55 AM.
  2. #2
    Hello Jimmy!

    Thanks for reporting the issue, seems similar issues happens with some drag and drop examples in our examples explorers.

    To this point we don't have a solution nor workaround for this, but we logged it under #1438 to track the problem. At this point we are not sure yet we are going to patch in the code or a simple override does the trick, but we're going to update you here as soon as we have a position on that!
    Fabrício Murta
    Developer & Support Expert
  3. #3
    Hello again!

    We just found a Sencha thread covering this issue, and it happened there were already a workaround thought of. We've tried it and worked fine on your test case and all other EE samples that we found affected by the same issue!..

    We have fixed it by our own as Sencha didn't publish a fix for this even after 6.5.0 release. This fix will be publicly available when we release Ext.NET version 4.3.0.
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Replies: 1
    Last Post: Aug 11, 2015, 4:50 PM
  2. Replies: 5
    Last Post: Feb 11, 2015, 8:50 PM
  3. [OPEN] [#340] Help with drag
    By xeo4.it in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Sep 04, 2013, 4:02 AM
  4. Replies: 4
    Last Post: May 03, 2013, 6:22 AM
  5. Replies: 14
    Last Post: Mar 30, 2010, 7:08 PM

Posting Permissions