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

Threaded View

Previous Post Previous Post   Next Post Next Post
  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.

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