Announcement

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

    setCanDragSelectText

    Hello,

    I want to allow users to select and copy to clipboard text within listGrid.
    Unfortunately option setCanDragSelectText(true) has unfortunate consequence.
    While selecting text, dragged row appears next to the mouse cursor. How can I prevent this from happening?
    I don't want this rows to be dragged anywhere and users are confused.
    I've tried setting other drag options to false but with now success because they are already false by default.
    Any suggestions?

    Best regards

    #2
    +1, this is very confusing.

    Comment


      #3
      Maybe this works for you:
      Code:
      setDragTrackerMode(DragTrackerMode.NONE);

      Comment


        #4
        That helped, thanks, levi.

        Comment


          #5
          Yes. It worked perfectly.
          Thank you very much.

          Comment

          Working...
          X