Uploaded image for project: 'Confluence Data Center'
  1. Confluence Data Center
  2. CONFSERVER-23536

Tabbing to a new cell is broken in IE9

    XMLWordPrintable

Details

    • Bug
    • Resolution: Won't Fix
    • Low
    • 4.0
    • None
    • None

    Description

      NOTE: This bug report is for Confluence Server. Using Confluence Cloud? See the corresponding bug report.

      Steps to reproduce:

      • Goto the second-last cell (second from the right, in the last row) in a table
      • Press Tab twice

      Expected:
      A new row of cells is created and the cursor moves to the first cell in the new row

      Actual:
      The entire table is selected

      Nabeelah and I managed to fix the bug by placing a timeout of 0 around the cell selection code. But its obviously not an ideal solution, and it would be good to work out the real culprit.

      var selectCell = function () {
          selection.select(cellNode, true);
          selection.collapse(true);
      };
      
      if (tinymce.isIE) {
          setTimeout(selectCell, 0);
      } else {
          selectCell();
      }
      

      Attachments

        Issue Links

          Activity

            People

              shaffenden Steve Haffenden (Inactive)
              Anonymous Anonymous
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: