Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid onCellDoubleClick event does not fire in Firefox

    Please could anyone tell me why this event does not get triggered in Firefox? The onRightMouseDown event does not work either. It works fine with all other browsers (IE, Chrome, Safari..)

    Thanks
    Last edited by sunyi000; 12 Jul 2010, 22:59.

    #2
    cellDoubleClick works in Firefox. See this sample.

    Comment


      #3
      Here's a segment of my code, it doesn't get triggered if I run it in firefox, but it works ok with ie and chrome. is there anything I missed?

      listgrid.addCellDoubleClickHandler(new CellDoubleClickHandler()
      {
      @Override
      public void onCellDoubleClick(CellDoubleClickEvent event)
      {
      System.out.println("hello");
      }
      });

      Comment


        #4
        ok if I move the listgrid out of the SplitPanel, the double-click works but right-click menu still not appearing in firefox

        Comment

        Working...
        X