Giter Club home page Giter Club logo

Comments (15)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Meta tag for standard mode already set in HTML page

Original comment by [email protected] on 24 Jan 2012 at 9:10

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Hey ! Have you try to test it on a real IE8 and a real IE7 ?

Compatibility mode is sometimes shitty !
I will take a close look at it.

Original comment by [email protected] on 24 Jan 2012 at 9:22

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
I have tested it on IE8. But same issue persist.

Original comment by [email protected] on 24 Jan 2012 at 9:26

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
try to run gwt-demo available in the sources.
is this example work for you ? http://gwt-links.appspot.com/

Original comment by [email protected] on 24 Jan 2012 at 9:30

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
http://gwt-links.appspot.com/ does  not show any links.

When I create demo project using source available in source and run it in IE 8 
still link does not get connected properly.

Attaching screen shot for your reference.    

Original comment by [email protected] on 24 Jan 2012 at 10:38

Attachments:

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
hi all,

I have the same problem with my demo also 

Original comment by [email protected] on 26 Jan 2012 at 3:03

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Hello

I am also facing the same issue. I would appreciate it greatly if you could 
provide a solution for making this work with IE 8.

Thanks in advance.

Original comment by [email protected] on 30 Jan 2012 at 8:04

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
i'll take a look at it quickly !
if any of you have the beginning of a solution, tell me ;)

Original comment by [email protected] on 30 Jan 2012 at 8:06

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
I would appreciate it greatly if you could provide a solution for making this 
work with IE 8.

Thanks in advance 

Original comment by [email protected] on 31 Jan 2012 at 5:36

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Are able to take look this problem. I would appreciate greatly any help on this 
issue. 

Thanks in advance 

Original comment by [email protected] on 6 Feb 2012 at 9:17

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
i tried to fix it for IE8 bug i cant find the problem. i keep searching
you can browse the source code to find how to fix that

Original comment by [email protected] on 6 Feb 2012 at 9:21

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Thanks for reply. Is Demo application working properly on you machine with IE 8 
browser? 

Original comment by [email protected] on 6 Feb 2012 at 9:27

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
no it doesn't

Original comment by [email protected] on 6 Feb 2012 at 9:29

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
I am seeing the same issue in Chrome (18.0.1025.162) on Linux

Original comment by [email protected] on 3 May 2012 at 12:43

from gwt-links.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
The IExplorer problem is in the ClassnameContainerFinder class.
Try to override with this. I developed this "patch" and work fine in.

package com.orange.links.client.utils;

import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Element;

public class ClassnameContainerFinder implements IContainerFinder {

    private static final String PARENT_CLASS_NAME = "dragdrop-boundary";

    @Override
    public boolean isContainer(Element element) {
        String classNames = DOM.getElementAttribute(element, "class");

        if ((classNames == null) || (classNames.isEmpty())) {
            classNames = element.getClassName();
        }
        return classNames.contains(PARENT_CLASS_NAME);
    }
}

Original comment by [email protected] on 26 Jun 2012 at 4:44

from gwt-links.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.