Announcement

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

    ListGrid.setCanDragSelectText - different text selection behavior in IE, FF, Chrome

    1. I'm usig smartGWT 3.1

    2. The following was testet in IE 10.0.02, Firefox ESR 17.0.6, Chrome 24.0.1312.57

    I have a ListGrid to provide Data.
    The ListGrid is editable by row.
    I want to give the user the possibility to select text from any cells while he is editing a row. So he can copy and paste the text.

    The two relevant settings i use are:
    listGrid.setModalEditing(false);
    listGrid.setCanDragSelectText(true);

    When i start selecting text from a cell not only the text in the cell is selected, but also the whole text from the right lower corner of the table to the position of the cell is selected.

    This happend in FF and Chrome. The behavior in IE is as expected.

    please see the following attachments.
    Attached Files

    #2
    I works now.
    It seems that this behavior was caused by

    dataGrid.setShowRollOverCanvas(true);

    Removing setShowRollOverCanvas solved the problem for me.

    Comment

    Working...
    X